#!/usr/bin/env python # coding: utf-8 # In[673]: import math import datetime import numpy as np import pandas as pd import seaborn as sns import warnings warnings.filterwarnings("ignore") from matplotlib import pyplot as plt get_ipython().run_line_magic('matplotlib', 'inline') from sklearn.preprocessing import LabelEncoder from sklearn.model_selection import train_test_split # In[674]: # read data from csv file data = pd.read_csv("C:/Users/ishwa/OneDrive/Desktop/Python/H2HBABBA3260.csv", nrows=50000) # In[675]: raw_data = data.copy() # In[676]: raw_data # In[677]: # these features doesn't play any role in predicting the target value rmv_col = ["document type", "buisness_year", "name_customer", "doc_id", "invoice_id", "isOpen"] data.drop(rmv_col, axis=1, inplace=True) # In[678]: # validating total_open_amount # amount can not be negative invalid_amount = [i for i in range(len(data["total_open_amount"])) if data["total_open_amount"].iloc[i] < 0] len(invalid_amount) # all amounts are found to be valid # in case if amounts are negative we can either replace the amount with the mean # or simply remove them if invalid observation are very less as compared to dataset # In[679]: # removing columns having nan in all observations data.dropna(how='all', axis=1, inplace=True) # removing rows with all features having nan values data.dropna(how='all', axis=0, inplace=True) # In[680]: # OneHotEncoding on business_code def oneHotEncoding(col, data): return pd.concat([data, pd.get_dummies(data[col])], axis=1) col = "business_code" data = oneHotEncoding(col, data) data.drop(col, axis=1, inplace=True) # In[681]: # 20% raw data with target value as nan, main_test = data[data["clear_date"].isnull()] main_test.shape # In[682]: # 80% remaining raw data, where target value is known and can be use to train the model main_data = data[data["clear_date"].notnull()] main_data.shape # In[683]: # convert datetime to corresponding days, month, year, quarter, dayofweek # add new columns for the feature containing days, month, year def changeToDateTime(data, key, date_format): data[key] = pd.to_datetime(data[key], format=date_format) # data[key+"_year"] = data[key].dt.year data[key+"_month"] = data[key].dt.month data[key+"_days"] = data[key].dt.day data[key+"_quarter"] = data[key].dt.quarter data[key+"_dayofweek"] = data[key].dt.dayofweek date_format = "%Y%m%d" date_cols = [ "document_create_date", "document_create_date.1", "baseline_create_date", "due_in_date"] for key in date_cols: changeToDateTime(main_data, key, date_format) changeToDateTime(main_data, "posting_date", "%Y-%m-%d") changeToDateTime(main_data, "clear_date", "%Y-%m-%d %H:%M:%S") # In[684]: # calculating delay # delay is the time difference between clear_date and due_in_date main_data["delay"] = main_data["clear_date"] - main_data["due_in_date"] main_data["delay"] = main_data["delay"].astype(str) main_data["delay"] = main_data["delay"].str.replace(" days", "").map(int) # positive values denotes that invoice will be cleared after due_in_date # negative values denotes that invoice will be cleared before dure_in_date main_data["delay"] # when machine model will predict this delay it can be used to infer the clear_date # clear_date = due_in_date + delay main_data.sort_values(by='due_in_date', inplace=True) main_data # In[685]: main_data.shape # In[686]: # split the main training set int two parts train and test # X_train, Y_train => model will be train on these datapoints X_train, X_test, Y_train, Y_test = train_test_split(main_data.drop(labels=["delay"], axis=1), main_data["delay"], test_size=0.3, random_state=0, shuffle=False, ) # In[687]: X_train.shape, Y_train.shape # In[688]: X_test.shape, Y_test.shape # In[689]: # split the test part in two parts validation and performance test # X_valid, Y_valid => model will be validated using these points # X_test, Y_test => for performance analysis, overfitting check X_valid, X_test, Y_valid, Y_test = train_test_split(X_test, Y_test, test_size=0.5, random_state=0, shuffle=False) # In[690]: X_valid.shape, Y_valid.shape # In[691]: X_test.shape, Y_test.shape # In[692]: X_train_due_in_date = X_train["due_in_date"] X_valid_due_in_date = X_valid["due_in_date"] X_test_due_in_date = X_test["due_in_date"] X_train_clear_date = X_train["clear_date"] X_valid_clear_date = X_valid["clear_date"] X_test_clear_date = X_test["clear_date"] def dropDates(X_train, X_valid, X_test, drop_dates): X_train.drop(drop_dates, axis=1, inplace=True) X_valid.drop(drop_dates, axis=1, inplace=True) X_test.drop(drop_dates, axis=1, inplace=True) dates = ["document_create_date", "document_create_date.1", "baseline_create_date", "due_in_date", "posting_date", "clear_date"] dropDates(X_train, X_valid, X_test, dates) # In[693]: # LabelEncoding # handling categorical variables def labelEncoding(col, data): encoder = LabelEncoder() data[col] = encoder.fit_transform(data[col].values) return data le_col = ["invoice_currency", "cust_payment_terms", "cust_number"] for col in le_col: X_train = labelEncoding(col, X_train) X_valid = labelEncoding(col, X_valid) X_test = labelEncoding(col, X_test) # In[694]: # constant feature constant_features = [x for x in X_train.columns if X_train[x].std() == 0] print(constant_features) X_train.drop(constant_features, axis=1, inplace=True) X_valid.drop(constant_features, axis=1, inplace=True) X_test.drop(constant_features, axis=1, inplace=True) # In[695]: sns.scatterplot(data=X_train.merge(Y_train, on=X_train.index), x="delay", y="total_open_amount") # In[696]: sns.distplot(Y_train) # In[697]: sns.distplot(X_train["total_open_amount"]) # In[698]: X_train.info() # In[699]: # function to select highly correlated features def correlation(dataset, threshold): col_corr = set() # correlated columns corr_matrix = dataset.corr() for i in range(len(corr_matrix.columns)): for j in range(i): if abs(corr_matrix.iloc[i, j]) > threshold: col_name = corr_matrix.columns[i] col_corr.add(col_name) return col_corr # In[700]: merged = X_train.merge(Y_train, on=X_train.index) plt.figure(figsize = (25, 25)) cor = merged.corr() sns.heatmap(cor, annot=True) # In[701]: corr_features = correlation(merged, 0.9) corr_features_found = len(set(corr_features)) print(corr_features_found) print(corr_features) # In[702]: def dateConvertedColumns(lst): new_lst = [] for x in lst: new_lst.append(x+"_days") new_lst.append(x+"_month") # new_lst.append(x+"_year") new_lst.append(x+"_quarter") new_lst.append(x+"_dayofweek") return new_lst merged = X_train.merge(Y_train, on=X_train.index) plt.figure(figsize = (25, 25)) # reducing graph size to easily interpret values lst = [ "document_create_date", "document_create_date.1", # "due_in_date", # "baseline_create_date", # "posting_date", # "clear_date" ] lst = dateConvertedColumns(lst) # lst.append("delay") # lst.append("total_open_amount") merged = merged[lst] cor = merged.corr() sns.heatmap(cor, annot=True) # In[703]: corr_features = correlation(merged, 0.9) corr_features_found = len(set(corr_features)) print(corr_features_found) print(corr_features) # In[704]: converted_dates = dateConvertedColumns(["document_create_date", "clear_date"]) dropDates(X_train, X_valid, X_test, converted_dates) # In[705]: X_train # In[706]: X_valid # In[707]: X_test # In[708]: from sklearn.linear_model import LinearRegression from sklearn.metrics import mean_squared_error def trainModelAndPredict(model, X_train, Y_train, test, res): model.fit(X_train, Y_train) Y_predict = model.predict(test) mse = mean_squared_error(res, Y_predict, squared=False) return Y_predict, mse # In[709]: # Run model on validation data Y_valid_predict, mse = trainModelAndPredict(LinearRegression(), X_train, Y_train, X_valid, Y_valid) print("Mean Squared Error : ", mse) # In[710]: # Run model on testing Y_test_predict, mse= trainModelAndPredict(LinearRegression(), X_train, Y_train, X_test, Y_test) print("Mean Squared Error : ", mse) # In[711]: def roundOffDelay(prediction): for i in range(len(prediction)): if prediction[i] < 0: prediction[i] = math.floor(prediction[i]) else: prediction[i] = math.ceil(prediction[i]) return prediction def viewActualsAndPredicted(delay, prediction, due_in_date, clear_date): prediction = roundOffDelay(prediction) clear_date_predicted = [] for i in range(len(prediction)): temp = due_in_date.iloc[i] + datetime.timedelta(prediction[i]) clear_date_predicted.append(temp) clear_date_predicted result = pd.DataFrame(zip(due_in_date, clear_date, clear_date_predicted, prediction, delay), columns=["due_in_date", "clear_date_actual", "clear_date_predicted", "prediction", "delay"]) return result.sort_values(by='due_in_date', ascending=False) res = viewActualsAndPredicted(Y_valid, Y_valid_predict, X_valid_due_in_date, X_valid_clear_date) # len([x for x in res.prediction if x < 0]) res # In[712]: viewActualsAndPredicted(Y_test, Y_test_predict, X_test_due_in_date, X_test_clear_date) # In[713]: # convert main_test to same format of training def convertDataToTrainFormat(data): date_format = "%Y%m%d" date_cols = [ "document_create_date", "document_create_date.1", "baseline_create_date", "due_in_date"] for key in date_cols: changeToDateTime(data, key, date_format) changeToDateTime(data, "posting_date", "%Y-%m-%d") changeToDateTime(data, "clear_date", "%Y-%m-%d %H:%M:%S") lst = ["clear_date", "document_create_date"] new_list = dateConvertedColumns(lst) lst = ["document_create_date", "document_create_date.1", "baseline_create_date", "due_in_date", "posting_date", "clear_date"] new_list.extend(lst) data.drop(new_list, axis=1, inplace=True) le_col = ["invoice_currency", "cust_payment_terms", "cust_number"] for col in le_col: data = labelEncoding(col, data) data.drop("posting_id", axis=1, inplace=True) return data # In[714]: main_result = main_test main_test = convertDataToTrainFormat(main_test) # In[715]: main_test.info() # In[716]: regr = LinearRegression() regr.fit(X_train, Y_train) main_predict = regr.predict(main_test) main_predict = roundOffDelay(main_predict) # In[717]: main_predict # In[724]: main_result = raw_data[raw_data["clear_date"].isnull()] main_result.drop("clear_date", axis=1, inplace=True) main_result["clear_date_predicted"] = main_predict due_in_date = pd.to_datetime(main_result["due_in_date"], format="%Y%m%d") for i in range(len(due_in_date)): main_result["clear_date_predicted"].iloc[i] = due_in_date.iloc[i] + datetime.timedelta(main_result["clear_date_predicted"].iloc[i]) pd.to_datetime(main_result["clear_date_predicted"], format="%d%m%Y") # In[725]: main_result
/* INSERT QUERY NO: 1 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930714862.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3797.1, 20200330.0, 'NAH4', 1930714862.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930780087.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 73681.96, 20200413.0, 'NAU5', 1930780087.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 3 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930801753.0, '2020-04-20', 20200419, 20200420, '2020-06-24', 'USD', 'RV', 1.0, 2587.2, 20200420.0, 'NAGD', 1930801753.0, 1, '2020-06-19', 'early' ); /* INSERT QUERY NO: 4 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930715014.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 270.84, 20200329.0, 'NAH4', 1930715014.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930718406.0, '2020-03-30', 20200329, 20200330, '2020-06-03', 'USD', 'RV', 1.0, 951.1, 20200330.0, 'NAGD', 1930718406.0, 1, '2020-05-29', 'early' ); /* INSERT QUERY NO: 6 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC llc', 2020.0, 1930599290.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 11581.36, 20200301.0, 'NAM2', 1930599290.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 7 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930884617.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 23279.7, 20200509.0, 'NAH4', 1930884617.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 8 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960624159.0, '2020-03-27', 20200327, 20200327, '2020-04-09', 'CAD', 'RV', 1.0, 279123.32, 20200330.0, 'CA10', 2960624159.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 9 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA co', 2020.0, 1930768871.0, '2020-04-14', 20200409, 20200414, '2020-05-04', 'USD', 'RV', 1.0, 12194.94, 20200414.0, 'NAD1', 1930768871.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 10 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930719064.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 6813.61, 20200330.0, 'NAH4', 1930719064.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 11 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER co', 2020.0, 1930715897.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 39607.12, 20200330.0, 'NAA8', 1930715897.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 12 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930774826.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 63.46, 20200410.0, 'NAA8', 1930774826.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 13 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930732651.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 2352.97, 20200403.0, 'NAH4', 1930732651.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 14 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930828812.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 3814.5, 20200427.0, 'NAH4', 1930828812.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 15 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930691510.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 5988.88, 20200324.0, 'NAH4', 1930691510.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 16 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S systems', 2020.0, 1930660040.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 66.37, 20200317.0, 'NAA8', 1930660040.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 17 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779340, 'CARA associates', 2020.0, 1930635528.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 56404.56, 20200311.0, 'NAA8', 1930635528.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 18 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corporation', 2020.0, 1930739469.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 88346.44, 20200402.0, 'NAA8', 1930739469.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 19 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930701122.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 42180.17, 20200326.0, 'NAH4', 1930701122.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 20 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG us', 2020.0, 1930670036.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 109970.6, 20200318.0, 'NAA8', 1930670036.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 21 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930868491.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 26861.63, 20200508.0, 'NAH4', 1930868491.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 22 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE trust', 2020.0, 1930668305.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 22986.39, 20200319.0, 'NAA8', 1930668305.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 23 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG foundation', 2020.0, 1930594352.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 102133.66, 20200303.0, 'NAA8', 1930594352.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 24 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930777139.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 65587.05, 20200413.0, 'NAAX', 1930777139.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 25 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930802825.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 46.27, 20200420.0, 'NAA8', 1930802825.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 26 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ llc', 2020.0, 1930686566.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 78475.34, 20200322.0, 'NAA8', 1930686566.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 27 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100049744, 'NUT corporation', 2020.0, 1930690103.0, '2020-03-30', 20200330, 20200330, '2020-04-09', 'USD', 'RV', 1.0, 20493.6, 20200330.0, 'NA10', 1930690103.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 28 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930720310.0, '2020-04-02', 20200330, 20200402, '2020-06-06', 'USD', 'RV', 1.0, 481.54, 20200402.0, 'NAGD', 1930720310.0, 1, '2020-06-02', 'early' ); /* INSERT QUERY NO: 29 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA systems', 2020.0, 1930666097.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 3766.16, 20200318.0, 'NAA8', 1930666097.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 30 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930801127.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 78619.25, 20200419.0, 'NAC6', 1930801127.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 31 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930792543.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 34117.92, 20200415.0, 'NAH4', 1930792543.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 32 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930838228.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2810.8, 20200430.0, 'NAA8', 1930838228.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 33 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103400, 'FOST trust', 2020.0, 1991839650.0, '2020-03-01', 20200226, 20200301, '2020-03-31', 'USD', 'RV', 1.0, 1268.4, 20200301.0, 'NAVE', 1991839650.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 34 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930652310.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 37300.21, 20200314.0, 'NAAX', 1930652310.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 35 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930780741.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 21327.28, 20200414.0, 'NAC6', 1930780741.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 36 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE foundation', 2020.0, 1930719303.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 44019.48, 20200330.0, 'NAA8', 1930719303.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 37 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930772620.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 5206.28, 20200410.0, 'NAA8', 1930772620.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 38 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930706751.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 45484.52, 20200327.0, 'NAA8', 1930706751.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 39 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO co', 2020.0, 2960627393.0, '2020-04-13', 20200413, 20200413, '2020-04-26', 'CAD', 'RV', 1.0, 9427.86, 20200416.0, 'CA10', 2960627393.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 40 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT systems', 2020.0, 1930711986.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 53461.99, 20200327.0, 'NAU5', 1930711986.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 41 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930693070.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3312.06, 20200330.0, 'NAA8', 1930693070.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 42 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT systems', 2020.0, 1930595898.0, '2020-03-03', 20200303, 20200303, '2020-03-23', 'USD', 'RV', 1.0, 359.84, 20200303.0, 'NAD1', 1930595898.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 43 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200720238, 'WOODM us', 2020.0, 1930764312.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 20322.33, 20200409.0, 'NAA8', 1930764312.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 44 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779340, 'CARA in', 2020.0, 1930637711.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 73303.94, 20200311.0, 'NAA8', 1930637711.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 45 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930576187.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 271.06, 20200227.0, 'NAH4', 1930576187.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 46 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER in', 2020.0, 1930690214.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 67090.72, 20200323.0, 'NAA8', 1930690214.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 47 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930793179.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 38982.57, 20200417.0, 'NAH4', 1930793179.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 48 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U005', 0100012181, 'GODL us', 2020.0, 1930773745.0, '2020-04-10', 20200410, 20200410, '2020-05-10', 'USD', 'RV', 1.0, 120.0, 20200410.0, 'NAD5', 1930773745.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 49 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930684519.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 13392.0, 20200322.0, 'NAH4', 1930684519.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 50 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930822526.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 98896.38, 20200423.0, 'NAC6', 1930822526.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 51 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930593194.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 1617.89, 20200304.0, 'NAH4', 1930593194.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 52 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930809653.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 426.66, 20200424.0, 'NAH4', 1930809653.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 53 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078854, 'MC A systems', 2020.0, 1930690084.0, '2020-03-24', 20200324, 20200324, '2020-05-28', 'USD', 'RV', 1.0, 85.65, 20200324.0, 'NAGD', 1930690084.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 54 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930813781.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 13789.99, 20200424.0, 'NAH4', 1930813781.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 55 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930715650.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 46419.04, 20200328.0, 'NAA8', 1930715650.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 56 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S trust', 2020.0, 1930784370.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 58495.5, 20200415.0, 'NAA8', 1930784370.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 57 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930673522.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 50301.94, 20200321.0, 'NAH4', 1930673522.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 58 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930708269.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 31674.81, 20200326.0, 'NAAX', 1930708269.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 59 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769556, 'SHAM ', 2020.0, 1930915219.0, '2020-05-20', 20200519, 20200520, '2020-06-04', 'USD', 'RV', 1.0, 35442.45, 20200520.0, 'NAA8', 1930915219.0, 1, '2020-05-31', 'early' ); /* INSERT QUERY NO: 60 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930729038.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 40798.37, 20200402.0, 'NAH4', 1930729038.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 61 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930739425.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 13191.96, 20200402.0, 'NAH4', 1930739425.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 62 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930581277.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 57349.58, 20200228.0, 'NAH4', 1930581277.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 63 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930666355.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 14204.38, 20200320.0, 'NAAX', 1930666355.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 64 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC us', 2020.0, 1930858137.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 29440.37, 20200504.0, 'NAA8', 1930858137.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 65 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930821996.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 2575.87, 20200425.0, 'NAA8', 1930821996.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 66 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER foundation', 2020.0, 1930758986.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 9954.16, 20200407.0, 'NAA8', 1930758986.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 67 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930604831.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 170200.12, 20200305.0, 'NAA8', 1930604831.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 68 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930711277.0, '2020-04-01', 20200328, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 16963.18, 20200401.0, 'NAA8', 1930711277.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 69 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH trust', 2020.0, 1930699973.0, '2020-03-28', 20200325, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 50917.68, 20200328.0, 'NAA8', 1930699973.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 70 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930731697.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 5113.2, 20200404.0, 'NAH4', 1930731697.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 71 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930746687.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 248.94, 20200404.0, 'NAU5', 1930746687.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 72 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930828960.0, '2020-04-25', 20200427, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 1150.74, 20200425.0, 'NAA8', 1930828960.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 73 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104423, 'METRO llc', 2020.0, 2960633275.0, '2020-05-06', 20200506, 20200506, '2020-05-18', 'CAD', 'RV', 1.0, 119100.2, 20200508.0, 'CA10', 2960633275.0, 1, '2020-05-26', '0-15 days' ); /* INSERT QUERY NO: 74 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705372, 'FR in', 2020.0, 1930684753.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 16939.75, 20200323.0, 'NAA8', 1930684753.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 75 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200407025, 'ALBERT co', 2020.0, 1930746721.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 65100.61, 20200404.0, 'NAA8', 1930746721.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 76 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL trust', 2020.0, 1930793820.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 180.28, 20200416.0, 'NAA8', 1930793820.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 77 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930690899.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 55816.71, 20200325.0, 'NAH4', 1930690899.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 78 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930797358.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 11916.43, 20200418.0, 'NAA8', 1930797358.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 79 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936615, 'OVERH in', 2020.0, 1930592524.0, '2020-03-04', 20200302, 20200304, '2020-05-03', 'USD', 'RV', 1.0, 15561.0, 20200304.0, 'NAVQ', 1930592524.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 80 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930766856.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1898.9, 20200409.0, 'NAH4', 1930766856.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 81 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930733711.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 39057.62, 20200403.0, 'NAH4', 1930733711.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 82 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'HEINZ systems', 2020.0, 1991839692.0, '2020-03-09', 20200309, 20200309, '2020-04-23', 'USD', 'RV', 1.0, 20227.57, 20200309.0, 'NAVF', 1991839692.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 83 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930855298.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 8782.13, 20200505.0, 'NAH4', 1930855298.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 84 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930606624.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 16253.84, 20200307.0, 'NAH4', 1930606624.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 85 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corp', 2020.0, 1930618511.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 3415.52, 20200301.0, 'NAM4', 1930618511.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 86 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS foundation', 2020.0, 1930830660.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 21299.06, 20200427.0, 'NAA8', 1930830660.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 87 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930570506.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 8914.92, 20200227.0, 'NAA8', 1930570506.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 88 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S corp', 2020.0, 1930662049.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 105916.32, 20200317.0, 'NAA8', 1930662049.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 89 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930725997.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 20737.51, 20200401.0, 'NAH4', 1930725997.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 90 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930848779.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 1626.33, 20200503.0, 'NAH4', 1930848779.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 91 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930779117.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 7.86, 20200412.0, 'NAH4', 1930779117.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 92 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930731499.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 1321.07, 20200402.0, 'NAH4', 1930731499.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 93 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930659213.0, '2020-03-17', 20200316, 20200317, '2020-05-21', 'USD', 'RV', 1.0, 47321.15, 20200317.0, 'NAGD', 1930659213.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 94 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960621235.0, '2020-03-15', 20200315, 20200315, '2020-03-28', 'CAD', 'RV', 1.0, 199135.46, 20200318.0, 'CA10', 2960621235.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 95 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930813083.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 18544.11, 20200422.0, 'NAH4', 1930813083.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 96 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930772534.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 9182.18, 20200411.0, 'NAC6', 1930772534.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 97 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930620781.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 43124.62, 20200308.0, 'NAH4', 1930620781.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 98 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930778032.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 13723.16, 20200412.0, 'NAH4', 1930778032.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 99 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100011958, 'IND co', 2020.0, 1991839643.0, '2020-02-27', 20200225, 20200227, '2020-04-12', 'USD', 'RV', 1.0, 14579.49, 20200227.0, 'NAVF', 1991839643.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE trust', 2020.0, 2960621051.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 62100.76, 20200318.0, 'CA10', 2960621051.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930756697.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 1898.9, 20200408.0, 'NAH4', 1930756697.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930632877.0, '2020-03-11', 20200310, 20200311, '2020-05-15', 'USD', 'RV', 1.0, 4526.48, 20200311.0, 'NAGD', 1930632877.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036003, 'TERR in', 2020.0, 1930830650.0, '2020-04-27', 20200427, 20200427, '2020-05-07', 'USD', 'RV', 1.0, 8853.12, 20200427.0, 'NA10', 1930830650.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930799563.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 41659.95, 20200418.0, 'NAH4', 1930799563.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930793127.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 132.72, 20200416.0, 'NAA8', 1930793127.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE systems', 2020.0, 1930580614.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 48605.07, 20200228.0, 'NAA8', 1930580614.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930778425.0, '2020-04-14', 20200411, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 70729.28, 20200414.0, 'NAH4', 1930778425.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ corporation', 2020.0, 1930835844.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 11724.61, 20200428.0, 'NAA8', 1930835844.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930708497.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 67970.95, 20200328.0, 'NAH4', 1930708497.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930782449.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 69687.7, 20200413.0, 'NAA8', 1930782449.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S trust', 2020.0, 1930861053.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 48587.7, 20200507.0, 'NAA8', 1930861053.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930570542.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 21341.99, 20200227.0, 'NAH4', 1930570542.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930822423.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 3563.94, 20200424.0, 'NAA8', 1930822423.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930756800.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 446.22, 20200407.0, 'NAH4', 1930756800.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930883676.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 21584.15, 20200510.0, 'NAH4', 1930883676.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F associates', 2020.0, 1930647486.0, '2020-03-13', 20200313, 20200313, '2020-03-13', 'USD', 'RV', 1.0, 3698.2, 20200313.0, 'NAX2', 1930647486.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL us', 2020.0, 1930641950.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 22983.35, 20200312.0, 'NAA8', 1930641950.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT trust', 2020.0, 1930795667.0, '2020-04-16', 20200417, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 74257.41, 20200416.0, 'NAA8', 1930795667.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930764952.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 51407.61, 20200410.0, 'NAAX', 1930764952.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930757296.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 16129.44, 20200406.0, 'NAA8', 1930757296.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU systems', 2020.0, 1930641525.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 56021.54, 20200311.0, 'NAA8', 1930641525.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930859971.0, '2020-05-05', 20200505, 20200505, '2020-06-08', 'USD', 'RV', 1.0, 920.59, 20200505.0, 'NAAW', 1930859971.0, 1, '2020-06-03', 'early' ); /* INSERT QUERY NO: 123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930776589.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 2321.7, 20200411.0, 'NAH4', 1930776589.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930810742.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 72312.16, 20200423.0, 'NAA8', 1930810742.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930653326.0, '2020-03-16', 20200314, 20200316, '2020-05-20', 'USD', 'RV', 1.0, 184.56, 20200316.0, 'NAGD', 1930653326.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036039, 'GI foundation', 2020.0, 1930764499.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 26556.34, 20200408.0, 'NAA8', 1930764499.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930845780.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 35.56, 20200501.0, 'NAH4', 1930845780.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930713406.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 351.19, 20200329.0, 'NAH4', 1930713406.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930646679.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 17754.5, 20200313.0, 'NAH4', 1930646679.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH systems', 2020.0, 1930641371.0, '2020-03-18', 20200311, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 21542.97, 20200318.0, 'NAA8', 1930641371.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930631764.0, '2020-03-10', 20200310, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 12496.74, 20200310.0, 'NAGD', 1930631764.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200729290, 'KROGER corp', 2020.0, 1930858217.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 122783.49, 20200505.0, 'NAA8', 1930858217.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930601591.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 45941.66, 20200306.0, 'NAAX', 1930601591.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO corp', 2020.0, 1930690755.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 97848.23, 20200325.0, 'NAA8', 1930690755.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930583353.0, '2020-03-02', 20200301, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 20867.96, 20200302.0, 'NAGD', 1930583353.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200042747, 'HALFON corp', 2020.0, 1930689798.0, '2020-03-27', 20200324, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 36984.49, 20200327.0, 'NAA8', 1930689798.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ associates', 2020.0, 1930837878.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 50045.92, 20200429.0, 'NAA8', 1930837878.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930666535.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 14204.38, 20200319.0, 'NAAX', 1930666535.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930838429.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 5571.4, 20200430.0, 'NAH4', 1930838429.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE ', 2020.0, 1930788511.0, '2020-04-20', 20200415, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 13351.3, 20200420.0, 'NAA8', 1930788511.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930619198.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 3797.1, 20200307.0, 'NAH4', 1930619198.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corp', 2020.0, 1930833756.0, '2020-04-28', 20200428, 20200428, '2020-06-01', 'USD', 'RV', 1.0, 8655.18, 20200428.0, 'NAAW', 1930833756.0, 1, '2020-05-26', 'early' ); /* INSERT QUERY NO: 143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB ', 2020.0, 2960627556.0, '2020-04-12', 20200412, 20200412, '2020-04-23', 'CAD', 'RV', 1.0, 105359.26, 20200413.0, 'CA10', 2960627556.0, 1, '2020-04-26', '0-15 days' ); /* INSERT QUERY NO: 144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930603090.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 338.74, 20200305.0, 'NAH4', 1930603090.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930604588.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 13758.48, 20200304.0, 'NAAX', 1930604588.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930621491.0, '2020-03-07', 20200308, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 75887.18, 20200307.0, 'NAA8', 1930621491.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corp', 2020.0, 1930820899.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 97343.91, 20200424.0, 'NAA8', 1930820899.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT systems', 2020.0, 1930797175.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 482.94, 20200417.0, 'NAA8', 1930797175.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930665163.0, '2020-03-20', 20200319, 20200320, '2020-04-23', 'USD', 'RV', 1.0, 19600.87, 20200320.0, 'NAAW', 1930665163.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F corp', 2020.0, 1930681704.0, '2020-03-22', 20200320, 20200322, '2020-03-22', 'USD', 'RV', 1.0, 113248.8, 20200322.0, 'NAX2', 1930681704.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930697987.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 222.74, 20200325.0, 'NAH4', 1930697987.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG corp', 2020.0, 1930818992.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 2382.55, 20200423.0, 'NAA8', 1930818992.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930606228.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 15187.84, 20200307.0, 'NAH4', 1930606228.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930794900.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 45610.74, 20200417.0, 'NAC6', 1930794900.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200101621, 'TRA trust', 2020.0, 1930622622.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 46121.4, 20200310.0, 'NAA8', 1930622622.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M corporation', 2020.0, 1930593062.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 180.32, 20200302.0, 'NAA8', 1930593062.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930829926.0, '2020-04-25', 20200427, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 18130.99, 20200425.0, 'NAH4', 1930829926.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930829038.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 32531.06, 20200427.0, 'NAH4', 1930829038.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930715303.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 1322.22, 20200329.0, 'NAH4', 1930715303.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930854043.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 33178.32, 20200505.0, 'NAH4', 1930854043.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO ', 2020.0, 1930560680.0, '2020-03-03', 20200302, 20200303, '2020-04-03', 'USD', 'RV', 1.0, 19840.59, 20200303.0, 'NA3B', 1930560680.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930717604.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 2896.34, 20200329.0, 'NAH4', 1930717604.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S corp', 2020.0, 1930735253.0, '2020-04-05', 20200402, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 37214.29, 20200405.0, 'NAA8', 1930735253.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930802342.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 86491.44, 20200420.0, 'NAA8', 1930802342.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO trust', 2020.0, 1930829870.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 448.78, 20200427.0, 'NAA8', 1930829870.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930579057.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 29751.36, 20200227.0, 'NAA8', 1930579057.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200700919, 'US corporation', 2020.0, 1930838916.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 29515.37, 20200429.0, 'NAA8', 1930838916.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW llc', 2020.0, 1930757785.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 33354.36, 20200408.0, 'NAA8', 1930757785.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930628540.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 145.33, 20200310.0, 'NAA8', 1930628540.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930760225.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 25047.76, 20200408.0, 'NAC6', 1930760225.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M us', 2020.0, 2960631429.0, '2020-04-28', 20200428, 20200428, '2020-05-09', 'CAD', 'RV', 1.0, 51147.74, 20200429.0, 'CA10', 2960631429.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930805987.0, '2020-04-24', 20200421, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 23318.4, 20200424.0, 'NAA8', 1930805987.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930851078.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 11403.47, 20200503.0, 'NAH4', 1930851078.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930729620.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 1329.23, 20200401.0, 'NAH4', 1930729620.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER corp', 2020.0, 1930651672.0, '2020-03-14', 20200314, 20200314, '2020-05-18', 'USD', 'RV', 1.0, 3943.3, 20200314.0, 'NAGD', 1930651672.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER corp', 2020.0, 1930583029.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 47051.94, 20200229.0, 'NAA8', 1930583029.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA corporation', 2020.0, 1930826881.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 44862.68, 20200425.0, 'NAA8', 1930826881.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775660, 'EB corporation', 2020.0, 1930664531.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 2281.57, 20200317.0, 'NAA8', 1930664531.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK ', 2020.0, 1930834120.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 125698.56, 20200428.0, 'NAA8', 1930834120.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930623460.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 871.35, 20200311.0, 'NAH4', 1930623460.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763489, 'GENERAL in', 2020.0, 1930577001.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 104121.27, 20200227.0, 'NAA8', 1930577001.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100004536, 'BAS systems', 2020.0, 1930643068.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 129534.91, 20200312.0, 'NAA8', 1930643068.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930690789.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 11471.86, 20200324.0, 'NAH4', 1930690789.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU co', 2020.0, 1930654317.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 95914.68, 20200315.0, 'NAA8', 1930654317.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER foundation', 2020.0, 1930858076.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 28195.64, 20200505.0, 'NAA8', 1930858076.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930794544.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 54331.43, 20200416.0, 'NAH4', 1930794544.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930772595.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 11605.22, 20200410.0, 'NAAX', 1930772595.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930778609.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 36541.06, 20200413.0, 'NAH4', 1930778609.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930576135.0, '2020-02-29', 20200226, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 7071.83, 20200229.0, 'NAAX', 1930576135.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930789245.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 132.72, 20200415.0, 'NAA8', 1930789245.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA associates', 2020.0, 1930714789.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 28246.21, 20200328.0, 'NAA8', 1930714789.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER associates', 2020.0, 1930630395.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 57572.95, 20200310.0, 'NAA8', 1930630395.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930870352.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 9116.78, 20200508.0, 'NAH4', 1930870352.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930788727.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 9462.3, 20200416.0, 'NAC6', 1930788727.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200580232, 'INTERR trust', 2020.0, 1930711007.0, '2020-03-27', 20200327, 20200327, '2020-04-06', 'USD', 'RV', 1.0, 37754.5, 20200327.0, 'NA10', 1930711007.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930654314.0, '2020-03-18', 20200315, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 672.0, 20200318.0, 'NAGD', 1930654314.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930852716.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 7053.5, 20200503.0, 'NAH4', 1930852716.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT us', 2020.0, 1930703376.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 52581.38, 20200325.0, 'NAA8', 1930703376.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930723570.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 7996.83, 20200401.0, 'NAH4', 1930723570.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930797614.0, '2020-04-16', 20200417, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 62135.03, 20200416.0, 'NAA8', 1930797614.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930767642.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 13693.33, 20200410.0, 'NAC6', 1930767642.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930715188.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 6077.24, 20200330.0, 'NAH4', 1930715188.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200718130, 'SYSCO F foundation', 2020.0, 1930610435.0, '2020-03-06', 20200305, 20200306, '2020-03-26', 'USD', 'RV', 1.0, 49026.06, 20200306.0, 'NAD1', 1930610435.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200729290, 'KROGER trust', 2020.0, 1930860108.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 11535.54, 20200506.0, 'NAA8', 1930860108.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE llc', 2020.0, 1930579943.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 113838.62, 20200228.0, 'NAA8', 1930579943.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO co', 2020.0, 2960626568.0, '2020-04-09', 20200409, 20200409, '2020-04-21', 'CAD', 'RV', 1.0, 54360.87, 20200411.0, 'CA10', 2960626568.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930689312.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 11996.59, 20200324.0, 'NAC6', 1930689312.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930740531.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 36863.39, 20200405.0, 'NAH4', 1930740531.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930728964.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 83597.84, 20200401.0, 'NAA8', 1930728964.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & llc', 2020.0, 1930693282.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 17573.69, 20200324.0, 'NAA8', 1930693282.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930759051.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 37463.83, 20200408.0, 'NAA8', 1930759051.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930719517.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 20634.09, 20200330.0, 'NAH4', 1930719517.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930779579.0, '2020-04-12', 20200413, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 4114.7, 20200412.0, 'NAH4', 1930779579.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930818450.0, '2020-04-22', 20200423, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 2870.54, 20200422.0, 'NAC6', 1930818450.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & systems', 2020.0, 1930814161.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 9053.96, 20200422.0, 'NAA8', 1930814161.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930583037.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 18069.93, 20200301.0, 'NAA8', 1930583037.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930777773.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 310.47, 20200413.0, 'NAH4', 1930777773.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930605760.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 431.52, 20200305.0, 'NAA8', 1930605760.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930587512.0, '2020-03-03', 20200302, 20200303, '2020-04-07', 'USD', 'RV', 1.0, 43796.76, 20200303.0, 'NAG2', 1930587512.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER corp', 2020.0, 1930594905.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 22658.03, 20200303.0, 'NAA8', 1930594905.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930809685.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 57540.89, 20200426.0, 'NAH4', 1930809685.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930725477.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 579.82, 20200331.0, 'NAU5', 1930725477.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930805991.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 58857.41, 20200421.0, 'NAA8', 1930805991.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930877041.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 51838.12, 20200508.0, 'NAH4', 1930877041.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930581545.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 88176.69, 20200301.0, 'NAC6', 1930581545.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930785524.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 566.65, 20200414.0, 'NAA8', 1930785524.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960627625.0, '2020-04-08', 20200408, 20200408, '2020-04-18', 'CAD', 'RV', 1.0, 60426.77, 20200408.0, 'CA10', 2960627625.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB in', 2020.0, 2960618442.0, '2020-03-05', 20200305, 20200305, '2020-03-16', 'CAD', 'RV', 1.0, 222533.06, 20200306.0, 'CA10', 2960618442.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA foundation', 2020.0, 1930724697.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 1555.46, 20200331.0, 'NAA8', 1930724697.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930571176.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 17085.42, 20200228.0, 'NAH4', 1930571176.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930746783.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 61844.57, 20200406.0, 'NAH4', 1930746783.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL corporation', 2020.0, 1930720627.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 73965.41, 20200331.0, 'NAA8', 1930720627.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930582332.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 813.94, 20200301.0, 'NAH4', 1930582332.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE associates', 2020.0, 1930661065.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 33582.8, 20200318.0, 'NAA8', 1930661065.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC trust', 2020.0, 1930877612.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 16120.3, 20200507.0, 'NAA8', 1930877612.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930619722.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 39543.61, 20200307.0, 'NAH4', 1930619722.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930840653.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 41159.03, 20200429.0, 'NAA8', 1930840653.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960626414.0, '2020-04-03', 20200403, 20200403, '2020-04-13', 'CAD', 'RV', 1.0, 9957.28, 20200403.0, 'CA10', 2960626414.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA corporation', 2020.0, 1930624168.0, '2020-03-09', 20200309, 20200309, '2020-05-13', 'USD', 'RV', 1.0, 2538.05, 20200309.0, 'NAGD', 1930624168.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930729201.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 37726.84, 20200401.0, 'NAA8', 1930729201.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR in', 2020.0, 2960628403.0, '2020-04-13', 20200413, 20200413, '2020-04-24', 'CAD', 'RV', 1.0, 852.09, 20200414.0, 'CA10', 2960628403.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930871874.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 3403.8, 20200507.0, 'NAH4', 1930871874.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930834537.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 82582.44, 20200430.0, 'NAAX', 1930834537.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930684270.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 617.83, 20200322.0, 'NAA8', 1930684270.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930715971.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 143102.03, 20200330.0, 'NAC6', 1930715971.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W associates', 2020.0, 1930713426.0, '2020-03-27', 20200327, 20200327, '2020-05-31', 'USD', 'RV', 1.0, 3764.87, 20200327.0, 'NAGD', 1930713426.0, 1, '2020-05-28', 'early' ); /* INSERT QUERY NO: 247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930775731.0, '2020-04-15', 20200410, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 1422.04, 20200415.0, 'NAA8', 1930775731.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200557600, 'GREEN in', 2020.0, 1930643299.0, '2020-03-12', 20200312, 20200312, '2020-03-22', 'USD', 'RV', 1.0, 4537.74, 20200312.0, 'NA10', 1930643299.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA systems', 2020.0, 1930693500.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 1483.4, 20200325.0, 'NAA8', 1930693500.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930716368.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 39426.65, 20200330.0, 'NAH4', 1930716368.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR associates', 2020.0, 1930828040.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 7740.7, 20200427.0, 'NAA8', 1930828040.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930708857.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 12116.78, 20200327.0, 'NAA8', 1930708857.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C corp', 2020.0, 1930758398.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 770.44, 20200409.0, 'NAA8', 1930758398.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC associates', 2020.0, 2960618825.0, '2020-03-05', 20200305, 20200305, '2020-03-23', 'CAD', 'RV', 1.0, 1927.8, 20200313.0, 'CA10', 2960618825.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930585668.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 8592.07, 20200302.0, 'NAH4', 1930585668.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930716431.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 10124.63, 20200329.0, 'NAH4', 1930716431.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930570920.0, '2020-02-28', 20200226, 20200228, '2020-05-03', 'USD', 'RV', 1.0, 15560.74, 20200228.0, 'NAGD', 1930570920.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930719652.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 38674.49, 20200401.0, 'NAAX', 1930719652.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200048886, 'SHERWO corporation', 2020.0, 1930692507.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 138006.35, 20200325.0, 'NAA8', 1930692507.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930776798.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 2823.88, 20200411.0, 'NAA8', 1930776798.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104498, 'E L us', 2020.0, 2960622802.0, '2020-03-19', 20200319, 20200319, '2020-04-10', 'CAD', 'RV', 1.0, 17290.29, 20200331.0, 'CA10', 2960622802.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER ', 2020.0, 1930675025.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 18551.75, 20200320.0, 'NAA8', 1930675025.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M in', 2020.0, 2960629464.0, '2020-04-24', 20200424, 20200424, '2020-05-05', 'CAD', 'RV', 1.0, 38469.06, 20200425.0, 'CA10', 2960629464.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC llc', 2020.0, 1930617733.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 1495.82, 20200301.0, 'NAM4', 1930617733.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO foundation', 2020.0, 2960627970.0, '2020-04-19', 20200419, 20200419, '2020-05-08', 'CAD', 'RV', 1.0, 4445.74, 20200428.0, 'CA10', 2960627970.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB co', 2020.0, 2960626664.0, '2020-04-09', 20200409, 20200409, '2020-04-30', 'CAD', 'RV', 1.0, 84383.38, 20200420.0, 'CA10', 2960626664.0, 1, '2020-05-05', '0-15 days' ); /* INSERT QUERY NO: 267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930834025.0, '2020-04-30', 20200428, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 8793.09, 20200430.0, 'NAAX', 1930834025.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930653443.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 33323.42, 20200316.0, 'NAC6', 1930653443.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT llc', 2020.0, 1930723185.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 10100.57, 20200331.0, 'NAA8', 1930723185.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930747219.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 2071.08, 20200404.0, 'NAA8', 1930747219.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930837544.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 30299.26, 20200430.0, 'NAC6', 1930837544.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930806215.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 149523.44, 20200422.0, 'NAA8', 1930806215.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930809446.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 380.43, 20200421.0, 'NAA8', 1930809446.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930587539.0, '2020-03-05', 20200302, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 35202.98, 20200305.0, 'NAH4', 1930587539.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930826865.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 6540.08, 20200425.0, 'NAH4', 1930826865.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930784658.0, '2020-04-17', 20200414, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 30397.91, 20200417.0, 'NAH4', 1930784658.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC llc', 2020.0, 1930656038.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 5046.99, 20200316.0, 'NAA8', 1930656038.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F ', 2020.0, 1930632105.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 22237.62, 20200310.0, 'NAA8', 1930632105.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930567149.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 44294.54, 20200227.0, 'NAH4', 1930567149.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930798464.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 63052.96, 20200420.0, 'NAH4', 1930798464.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE llc', 2020.0, 1930601188.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 12868.34, 20200304.0, 'NAA8', 1930601188.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT systems', 2020.0, 1930624320.0, '2020-03-10', 20200309, 20200310, '2020-04-13', 'USD', 'RV', 1.0, 13063.93, 20200310.0, 'NAAW', 1930624320.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN associates', 2020.0, 1930759070.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 47867.48, 20200407.0, 'NAA8', 1930759070.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE corp', 2020.0, 2960630938.0, '2020-04-27', 20200427, 20200427, '2020-05-15', 'CAD', 'RV', 1.0, 26564.1, 20200505.0, 'CA10', 2960630938.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH foundation', 2020.0, 1930842781.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 113665.91, 20200430.0, 'NAA8', 1930842781.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA foundation', 2020.0, 1930817922.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 4350.16, 20200416.0, 'NAM1', 1930817922.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU trust', 2020.0, 1930605695.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 105840.82, 20200305.0, 'NAA8', 1930605695.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930719344.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 63308.79, 20200330.0, 'NAC6', 1930719344.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930677233.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 20728.42, 20200322.0, 'NAA8', 1930677233.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930766855.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 6149.52, 20200409.0, 'NAH4', 1930766855.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930719923.0, '2020-04-02', 20200330, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 21379.43, 20200402.0, 'NAAX', 1930719923.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930619347.0, '2020-03-06', 20200307, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 33667.85, 20200306.0, 'NAH4', 1930619347.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200900909, 'SYSCO ', 2020.0, 1930842266.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 16913.2, 20200504.0, 'NAA8', 1930842266.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW ', 2020.0, 1930693788.0, '2020-03-24', 20200325, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 86986.68, 20200324.0, 'NAA8', 1930693788.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST us', 2020.0, 1930860206.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 13776.49, 20200505.0, 'NAAX', 1930860206.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA corp', 2020.0, 1930724130.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3690.51, 20200330.0, 'NAA8', 1930724130.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100057168, 'CO corp', 2020.0, 1930786426.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 98944.79, 20200415.0, 'NAA8', 1930786426.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE associates', 2020.0, 1930793813.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 71617.49, 20200418.0, 'NAA8', 1930793813.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930719020.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 32514.07, 20200330.0, 'NAH4', 1930719020.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW in', 2020.0, 1930873779.0, '2020-05-06', 20200507, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 81485.22, 20200506.0, 'NAA8', 1930873779.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930885161.0, '2020-05-10', 20200510, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 12313.5, 20200510.0, 'NAH4', 1930885161.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930780272.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 430.74, 20200415.0, 'NAA8', 1930780272.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930692866.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 6540.07, 20200324.0, 'NAH4', 1930692866.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930673365.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 1898.2, 20200321.0, 'NAH4', 1930673365.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930630231.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 16412.27, 20200310.0, 'NAAX', 1930630231.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR llc', 2020.0, 1930617157.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 74331.76, 20200308.0, 'NAA8', 1930617157.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772595, 'SAFEW co', 2020.0, 1930855106.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 86055.5, 20200503.0, 'NAA8', 1930855106.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930627209.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 3205.79, 20200311.0, 'NAA8', 1930627209.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930845498.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 52682.68, 20200501.0, 'NAH4', 1930845498.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103470, 'D\'ALB co', 2020.0, 1991841250.0, '2020-03-23', 20200323, 20200323, '2020-04-22', 'USD', 'RV', 1.0, 55569.15, 20200323.0, 'NAVE', 1991841250.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO co', 2020.0, 2960614247.0, '2020-02-27', 20200227, 20200227, '2020-03-10', 'CAD', 'RV', 1.0, 74160.09, 20200229.0, 'CA10', 2960614247.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA corporation', 2020.0, 1930599398.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 9784.88, 20200301.0, 'NAM4', 1930599398.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F us', 2020.0, 1930646635.0, '2020-03-12', 20200312, 20200312, '2020-03-12', 'USD', 'RV', 1.0, 26845.0, 20200312.0, 'NAX2', 1930646635.0, 1, '2020-03-18', '0-15 days' ); /* INSERT QUERY NO: 314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043948, 'AMERIC foundation', 2020.0, 1930573733.0, '2020-03-05', 20200302, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 17319.8, 20200305.0, 'NAA8', 1930573733.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930850536.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 27013.58, 20200503.0, 'NAH4', 1930850536.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930652815.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 2568.42, 20200315.0, 'NAA8', 1930652815.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200126819, 'MCLANE ', 2020.0, 1930637415.0, '2020-03-16', 20200311, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 233.05, 20200316.0, 'NAA8', 1930637415.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930829989.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 70344.55, 20200428.0, 'NAAX', 1930829989.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO corp', 2020.0, 1930647569.0, '2020-03-16', 20200313, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 35974.27, 20200316.0, 'NAA8', 1930647569.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930643287.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 51427.62, 20200312.0, 'NAH4', 1930643287.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200750051, 'ALBER associates', 2020.0, 1930850663.0, '2020-05-01', 20200502, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 125738.01, 20200501.0, 'NAA8', 1930850663.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930768059.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 15.76, 20200411.0, 'NAH4', 1930768059.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930584437.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 20739.24, 20200301.0, 'NAH4', 1930584437.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930725917.0, '2020-04-03', 20200331, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 5871.4, 20200403.0, 'NAH4', 1930725917.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930572459.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 35575.18, 20200227.0, 'NAH4', 1930572459.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930710735.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 54562.53, 20200328.0, 'NAA8', 1930710735.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930738537.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 111054.25, 20200403.0, 'NAH4', 1930738537.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930797231.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 94.68, 20200417.0, 'NAA8', 1930797231.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930703648.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 28346.19, 20200326.0, 'NAH4', 1930703648.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930810863.0, '2020-04-22', 20200422, 20200422, '2020-04-26', 'USD', 'RV', 1.0, 6589.7, 20200416.0, 'NAM2', 1930810863.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC us', 2020.0, 1930860035.0, '2020-05-05', 20200505, 20200505, '2020-05-11', 'USD', 'RV', 1.0, 10298.32, 20200501.0, 'NAM2', 1930860035.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100049962, 'MARKPOL corporation', 2020.0, 1930823245.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 10377.45, 20200424.0, 'NAA8', 1930823245.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930815106.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 17208.96, 20200422.0, 'NAU5', 1930815106.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB ', 2020.0, 2960625377.0, '2020-04-02', 20200402, 20200402, '2020-04-12', 'CAD', 'RV', 1.0, 40903.27, 20200402.0, 'CA10', 2960625377.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930624290.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 41309.29, 20200309.0, 'NAH4', 1930624290.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930566391.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 15496.23, 20200227.0, 'NAH4', 1930566391.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER systems', 2020.0, 2960626222.0, '2020-04-03', 20200403, 20200403, '2020-04-22', 'CAD', 'RV', 1.0, 174378.71, 20200412.0, 'CA10', 2960626222.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100058020, 'KIM\' ', 2020.0, 1930838578.0, '2020-05-01', 20200429, 20200501, '2020-05-01', 'USD', 'RV', 1.0, 2689.5, 20200501.0, 'NAB1', 1930838578.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930690957.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 14776.32, 20200324.0, 'NAA8', 1930690957.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930715411.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 24880.73, 20200329.0, 'NAH4', 1930715411.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA llc', 2020.0, 1930877180.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 504.72, 20200501.0, 'NAM4', 1930877180.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930684853.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 13634.5, 20200324.0, 'NAH4', 1930684853.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corporation', 2020.0, 1930793767.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 40914.87, 20200416.0, 'NAA8', 1930793767.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT foundation', 2020.0, 1930598016.0, '2020-03-04', 20200303, 20200304, '2020-04-08', 'USD', 'RV', 1.0, 32244.2, 20200304.0, 'NAG2', 1930598016.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930738958.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 2755.36, 20200403.0, 'NAC6', 1930738958.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106293, 'ATLANT corp', 2020.0, 2960622354.0, '2020-03-19', 20200319, 20200319, '2020-04-06', 'CAD', 'RV', 1.0, 26510.94, 20200327.0, 'CA10', 2960622354.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930747605.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 1349.02, 20200404.0, 'NAC6', 1930747605.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930793427.0, '2020-04-21', 20200416, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 3863.93, 20200421.0, 'NAAX', 1930793427.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930705136.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 8545.8, 20200326.0, 'NAA8', 1930705136.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930577937.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 832.91, 20200228.0, 'NAA8', 1930577937.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR co', 2020.0, 1930628295.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 164296.85, 20200312.0, 'NAA8', 1930628295.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930740468.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 4474.85, 20200405.0, 'NAH4', 1930740468.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930782035.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 335.98, 20200414.0, 'NAA8', 1930782035.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH foundation', 2020.0, 1930670543.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 5773.71, 20200319.0, 'NAA8', 1930670543.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK ', 2020.0, 1930799841.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 25191.03, 20200418.0, 'NAA8', 1930799841.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930630355.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 285.03, 20200311.0, 'NAAX', 1930630355.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200133150, 'KROG systems', 2020.0, 1930580105.0, '2020-02-27', 20200227, 20200227, '2020-05-02', 'USD', 'RV', 1.0, 211052.62, 20200227.0, 'NAGD', 1930580105.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930838130.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 58696.32, 20200430.0, 'NAH4', 1930838130.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930756611.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 36014.7, 20200408.0, 'NAH4', 1930756611.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930732103.0, '2020-04-02', 20200402, 20200402, '2020-06-06', 'USD', 'RV', 1.0, 16588.52, 20200402.0, 'NAGD', 1930732103.0, 1, '2020-06-03', 'early' ); /* INSERT QUERY NO: 361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200728385, 'KECK\' trust', 2020.0, 1930859438.0, '2020-05-12', 20200505, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 10922.81, 20200512.0, 'NAA8', 1930859438.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930585834.0, '2020-03-04', 20200301, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 14204.38, 20200304.0, 'NAAX', 1930585834.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG in', 2020.0, 1930764847.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 28576.98, 20200408.0, 'NAA8', 1930764847.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140105785, 'SHOPPE associates', 2020.0, 2960624832.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'CAD', 'RV', 1.0, 5266.32, 20200402.0, 'CA10', 2960624832.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930708243.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 15217.08, 20200326.0, 'NAH4', 1930708243.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU in', 2020.0, 1930827704.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 49421.29, 20200427.0, 'NAC6', 1930827704.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930769226.0, '2020-04-13', 20200409, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 51407.61, 20200413.0, 'NAAX', 1930769226.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930669373.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 52136.57, 20200319.0, 'NAH4', 1930669373.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200763489, 'GENERAL us', 2020.0, 1930715343.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 109452.46, 20200328.0, 'NAA8', 1930715343.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 100031686, 'EWT-EU us', 2020.0, 1991840730.0, '2020-03-13', 20200309, 20200313, '2020-04-12', 'USD', 'RV', 1.0, 8414.95, 20200313.0, 'NAVE', 1991840730.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930857678.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 35315.24, 20200504.0, 'NAH4', 1930857678.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930672918.0, '2020-03-19', 20200319, 20200319, '2020-04-20', 'USD', 'RV', 1.0, 40578.29, 20200319.0, 'NA32', 1930672918.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO ', 2020.0, 1930772624.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 31992.84, 20200410.0, 'NAA8', 1930772624.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC llc', 2020.0, 2960617926.0, '2020-03-02', 20200302, 20200302, '2020-03-20', 'CAD', 'RV', 1.0, 424.8, 20200310.0, 'CA10', 2960617926.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930859966.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 12674.77, 20200507.0, 'NAH4', 1930859966.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200464724, 'LAND corporation', 2020.0, 1930759438.0, '2020-04-07', 20200407, 20200407, '2020-04-17', 'USD', 'RV', 1.0, 204051.78, 20200407.0, 'NA10', 1930759438.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930793897.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 10236.1, 20200417.0, 'NAH4', 1930793897.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT systems', 2020.0, 1930682085.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 74622.75, 20200322.0, 'NAA8', 1930682085.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200799367, 'MCL in', 2020.0, 1930662971.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 52529.14, 20200317.0, 'NAA8', 1930662971.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930740182.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 7795.4, 20200404.0, 'NAA8', 1930740182.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO foundation', 2020.0, 2960619622.0, '2020-03-08', 20200308, 20200308, '2020-03-20', 'CAD', 'RV', 1.0, 39944.63, 20200310.0, 'CA10', 2960619622.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER co', 2020.0, 1930779079.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 2382.55, 20200413.0, 'NAA8', 1930779079.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930809365.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 110714.0, 20200423.0, 'NAA8', 1930809365.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC in', 2020.0, 1930764998.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 11108.7, 20200401.0, 'NAM4', 1930764998.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100055606, 'ALVARE in', 2020.0, 1991840301.0, '2020-03-01', 20200228, 20200301, '2020-03-31', 'USD', 'RV', 1.0, 6413.76, 20200301.0, 'NAVE', 1991840301.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F co', 2020.0, 1930580015.0, '2020-03-03', 20200302, 20200303, '2020-03-03', 'USD', 'RV', 1.0, 75114.51, 20200303.0, 'NAX2', 1930580015.0, 1, '2020-03-09', '0-15 days' ); /* INSERT QUERY NO: 387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930580962.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 12289.01, 20200228.0, 'NAH4', 1930580962.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S corporation', 2020.0, 1930717415.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 668.63, 20200329.0, 'NAA8', 1930717415.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930716959.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3227.43, 20200330.0, 'NAH4', 1930716959.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930862556.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 253.84, 20200506.0, 'NAA8', 1930862556.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930611432.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 25390.93, 20200306.0, 'NAH4', 1930611432.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO associates', 2020.0, 1930686673.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 20398.97, 20200323.0, 'NAA8', 1930686673.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO llc', 2020.0, 2960625330.0, '2020-03-30', 20200330, 20200330, '2020-04-09', 'CAD', 'RV', 1.0, 109146.31, 20200330.0, 'CA10', 2960625330.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER us', 2020.0, 1930854372.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 67311.4, 20200503.0, 'NAA8', 1930854372.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN llc', 2020.0, 1930597906.0, '2020-03-06', 20200303, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 15840.0, 20200306.0, 'NAA8', 1930597906.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE co', 2020.0, 1930666924.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 111369.34, 20200320.0, 'NAA8', 1930666924.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA in', 2020.0, 1930757751.0, '2020-04-07', 20200407, 20200407, '2020-04-24', 'USD', 'RV', 1.0, 312.33, 20200401.0, 'NAM4', 1930757751.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712102, 'SUGAR associates', 2020.0, 1930601214.0, '2020-03-04', 20200304, 20200304, '2020-05-03', 'USD', 'RV', 1.0, 88144.63, 20200304.0, 'NAVQ', 1930601214.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930693349.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 3642.71, 20200324.0, 'NAU5', 1930693349.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930635625.0, '2020-03-11', 20200310, 20200311, '2020-04-15', 'USD', 'RV', 1.0, 14659.8, 20200311.0, 'NAG2', 1930635625.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B co', 2020.0, 1930670837.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 26624.51, 20200321.0, 'NAA8', 1930670837.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930657223.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 36691.19, 20200317.0, 'NAH4', 1930657223.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930584083.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 15428.59, 20200301.0, 'NAH4', 1930584083.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930686651.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 77463.55, 20200322.0, 'NAU5', 1930686651.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104263, 'BAKEMAR ', 2020.0, 2960619119.0, '2020-03-06', 20200306, 20200306, '2020-03-23', 'CAD', 'RV', 1.0, 701.57, 20200313.0, 'CA10', 2960619119.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE associates', 2020.0, 1930799717.0, '2020-04-17', 20200417, 20200417, '2020-06-21', 'USD', 'RV', 1.0, 221654.1, 20200417.0, 'NAGD', 1930799717.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930857668.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 41816.52, 20200507.0, 'NAA8', 1930857668.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930620257.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 32.36, 20200308.0, 'NAH4', 1930620257.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930714514.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 296.22, 20200328.0, 'NAA8', 1930714514.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930804612.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 10677.08, 20200421.0, 'NAH4', 1930804612.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100056054, 'ACTIVE M us', 2020.0, 2960633525.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'CAD', 'RV', 1.0, 29216.19, 20200512.0, 'CA10', 2960633525.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT foundation', 2020.0, 1930748530.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 71973.69, 20200404.0, 'NAA8', 1930748530.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC in', 2020.0, 1930831695.0, '2020-04-30', 20200428, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 10438.59, 20200430.0, 'NAA8', 1930831695.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930699647.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 24340.42, 20200325.0, 'NAA8', 1930699647.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930798704.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 290.32, 20200418.0, 'NAA8', 1930798704.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930617017.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 245.02, 20200307.0, 'NAH4', 1930617017.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200571849, 'US llc', 2020.0, 1930687183.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 49619.95, 20200323.0, 'NAA8', 1930687183.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930790874.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 6145.58, 20200416.0, 'NAH4', 1930790874.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100035139, 'PROVINC in', 2020.0, 2960627331.0, '2020-04-08', 20200408, 20200408, '2020-04-19', 'CAD', 'RV', 1.0, 16118.4, 20200409.0, 'CA10', 2960627331.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU ', 2020.0, 1930664673.0, '2020-03-17', 20200317, 20200317, '2020-04-06', 'USD', 'RV', 1.0, 22121.64, 20200317.0, 'NAD1', 1930664673.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F associates', 2020.0, 1930685812.0, '2020-03-26', 20200322, 20200326, '2020-03-26', 'USD', 'RV', 1.0, 2420.8, 20200326.0, 'NAX2', 1930685812.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M corp', 2020.0, 1930692859.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 135834.2, 20200326.0, 'NAA8', 1930692859.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930772918.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 33895.52, 20200412.0, 'NAH4', 1930772918.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930844294.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 83939.73, 20200430.0, 'NAU5', 1930844294.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930649293.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 22438.43, 20200314.0, 'NAH4', 1930649293.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930724128.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 333.28, 20200331.0, 'NAA8', 1930724128.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930618930.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 13382.4, 20200307.0, 'NAH4', 1930618930.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930855652.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 48929.54, 20200504.0, 'NAH4', 1930855652.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC trust', 2020.0, 1930676604.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 5063.49, 20200316.0, 'NAM2', 1930676604.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960631439.0, '2020-04-29', 20200429, 20200429, '2020-05-10', 'CAD', 'RV', 1.0, 204773.88, 20200430.0, 'CA10', 2960631439.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA systems', 2020.0, 1930762339.0, '2020-04-08', 20200408, 20200408, '2020-04-08', 'USD', 'RV', 1.0, 43722.33, 20200401.0, 'NAM1', 1930762339.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930856605.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 38381.63, 20200505.0, 'NAH4', 1930856605.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC trust', 2020.0, 2960619625.0, '2020-03-08', 20200308, 20200308, '2020-03-27', 'CAD', 'RV', 1.0, 82770.28, 20200317.0, 'CA10', 2960619625.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721530, 'REDNE systems', 2020.0, 1930671411.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 53480.08, 20200318.0, 'NAA8', 1930671411.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930739584.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 6436.41, 20200405.0, 'NAH4', 1930739584.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719526, 'SHARP S associates', 2020.0, 1930703532.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 20795.12, 20200327.0, 'NAA8', 1930703532.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M llc', 2020.0, 2960626279.0, '2020-04-06', 20200406, 20200406, '2020-04-16', 'CAD', 'RV', 1.0, 38805.39, 20200406.0, 'CA10', 2960626279.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930689948.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 196.56, 20200316.0, 'NAM4', 1930689948.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930730755.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 11098.1, 20200403.0, 'NAA8', 1930730755.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930620020.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 125195.11, 20200307.0, 'NAA8', 1930620020.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO foundation', 2020.0, 1930636551.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 138822.62, 20200311.0, 'NAA8', 1930636551.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930829428.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 1714.83, 20200427.0, 'NAA8', 1930829428.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN associates', 2020.0, 1930665523.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 57435.96, 20200317.0, 'NAA8', 1930665523.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH associates', 2020.0, 1930720482.0, '2020-03-31', 20200330, 20200331, '2020-06-04', 'USD', 'RV', 1.0, 1486.5, 20200331.0, 'NAGD', 1930720482.0, 1, '2020-06-03', 'early' ); /* INSERT QUERY NO: 445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT foundation', 2020.0, 1930644065.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 61174.52, 20200312.0, 'NAA8', 1930644065.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930779956.0, '2020-04-05', 20200413, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 297.56, 20200405.0, 'NAA8', 1930779956.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726025, 'MARTI ', 2020.0, 1930725927.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 20976.29, 20200331.0, 'NAA8', 1930725927.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W ', 2020.0, 1930838234.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 4986.24, 20200429.0, 'NAC6', 1930838234.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN co', 2020.0, 1930660226.0, '2020-03-21', 20200316, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 19152.0, 20200321.0, 'NAA8', 1930660226.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR ', 2020.0, 1930652745.0, '2020-03-15', 20200314, 20200315, '2020-05-19', 'USD', 'RV', 1.0, 20714.68, 20200315.0, 'NAGD', 1930652745.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930681812.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 12644.14, 20200322.0, 'NAH4', 1930681812.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200748108, 'KROGER co', 2020.0, 1930755191.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 74500.94, 20200406.0, 'NAA8', 1930755191.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930704104.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 30961.03, 20200325.0, 'NAH4', 1930704104.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA llc', 2020.0, 1930705782.0, '2020-03-26', 20200326, 20200326, '2020-04-25', 'USD', 'RV', 1.0, 21109.79, 20200326.0, 'NAD5', 1930705782.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930726729.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 32461.83, 20200401.0, 'NAH4', 1930726729.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930773166.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 767.56, 20200401.0, 'NAM4', 1930773166.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930761078.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 7067.08, 20200409.0, 'NAH4', 1930761078.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930825634.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 53587.46, 20200425.0, 'NAC6', 1930825634.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930643053.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 51019.37, 20200313.0, 'NAH4', 1930643053.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL in', 2020.0, 1930593233.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 79536.84, 20200303.0, 'NAA8', 1930593233.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930731971.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 629.67, 20200403.0, 'NAH4', 1930731971.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA us', 2020.0, 1930762244.0, '2020-04-08', 20200408, 20200408, '2020-04-24', 'USD', 'RV', 1.0, 3443.53, 20200401.0, 'NAM4', 1930762244.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC foundation', 2020.0, 1930599757.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 14492.01, 20200301.0, 'NAM2', 1930599757.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930619710.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 45695.06, 20200308.0, 'NAH4', 1930619710.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930582430.0, '2020-03-01', 20200229, 20200301, '2020-04-15', 'USD', 'RV', 1.0, 82698.27, 20200301.0, 'NAWP', 1930582430.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930814101.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 38732.49, 20200422.0, 'NAC6', 1930814101.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D co', 2020.0, 1930781437.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 14788.79, 20200413.0, 'NAA8', 1930781437.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930834273.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 1481.6, 20200430.0, 'NAAX', 1930834273.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE foundation', 2020.0, 1930783767.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 65595.11, 20200414.0, 'NAA8', 1930783767.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930882888.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 1986.95, 20200509.0, 'NAH4', 1930882888.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT associates', 2020.0, 1930720190.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 41441.24, 20200330.0, 'NAA8', 1930720190.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930856577.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 1735.5, 20200504.0, 'NAH4', 1930856577.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930832544.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 4700.26, 20200429.0, 'NAA8', 1930832544.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930660240.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 113196.31, 20200317.0, 'NAA8', 1930660240.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930716118.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 30409.08, 20200329.0, 'NAH4', 1930716118.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100054178, 'ROUNDY systems', 2020.0, 1930570303.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 5618.48, 20200304.0, 'NAA8', 1930570303.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA foundation', 2020.0, 1930826136.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 71346.54, 20200425.0, 'NAA8', 1930826136.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930731958.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 638.44, 20200401.0, 'NAH4', 1930731958.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930825727.0, '2020-04-24', 20200425, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 52562.99, 20200424.0, 'NAA8', 1930825727.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930801646.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 126.92, 20200420.0, 'NAA8', 1930801646.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW us', 2020.0, 1930800304.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 153614.72, 20200420.0, 'NAA8', 1930800304.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930689009.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 1322.22, 20200325.0, 'NAH4', 1930689009.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ foundation', 2020.0, 1930824691.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 1908.33, 20200427.0, 'NAA8', 1930824691.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200561861, 'CO corp', 2020.0, 1930646580.0, '2020-03-19', 20200313, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 30906.69, 20200319.0, 'NAA8', 1930646580.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corp', 2020.0, 1930689886.0, '2020-03-24', 20200324, 20200324, '2020-03-23', 'USD', 'RV', 1.0, 4740.89, 20200316.0, 'NAM1', 1930689886.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT us', 2020.0, 1930605040.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 1444.59, 20200305.0, 'NAA8', 1930605040.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930788559.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 1902.4, 20200416.0, 'NAA8', 1930788559.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930637358.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 396.37, 20200311.0, 'NAA8', 1930637358.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930660353.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 12605.77, 20200318.0, 'NAH4', 1930660353.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930660670.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 34197.94, 20200318.0, 'NAAX', 1930660670.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M ', 2020.0, 2960632601.0, '2020-05-02', 20200502, 20200502, '2020-05-13', 'CAD', 'RV', 1.0, 57029.91, 20200503.0, 'CA10', 2960632601.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930821563.0, '2020-04-23', 20200423, 20200423, '2020-05-27', 'USD', 'RV', 1.0, 34895.59, 20200423.0, 'NAAW', 1930821563.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930721707.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 23458.17, 20200401.0, 'NAC6', 1930721707.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE foundation', 2020.0, 1930851968.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 16455.99, 20200504.0, 'NAA8', 1930851968.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930617885.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 8642.76, 20200309.0, 'NAH4', 1930617885.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200357714, 'US us', 2020.0, 1930830053.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 16172.1, 20200427.0, 'NAA8', 1930830053.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE co', 2020.0, 1930594886.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 75692.01, 20200304.0, 'NAA8', 1930594886.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930760044.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 2856.0, 20200408.0, 'NAH4', 1930760044.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200833713, 'JETRO co', 2020.0, 1930600055.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 368.8, 20200304.0, 'NAA8', 1930600055.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH ', 2020.0, 1930794859.0, '2020-04-22', 20200416, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 2559.0, 20200422.0, 'NAA8', 1930794859.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO ', 2020.0, 2960631401.0, '2020-04-27', 20200427, 20200427, '2020-05-08', 'CAD', 'RV', 1.0, 1031.99, 20200428.0, 'CA10', 2960631401.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA associates', 2020.0, 1930654659.0, '2020-03-16', 20200316, 20200316, '2020-03-11', 'USD', 'RV', 1.0, 1765.66, 20200301.0, 'NAM2', 1930654659.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0, 'KRAFT us', 2020.0, 2960622713.0, '2020-03-19', 20200319, 20200319, '2020-04-24', 'CAD', 'RV', 1.0, 27924.36, 20200320.0, 'NAG2', 2960622713.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930801798.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 50568.75, 20200421.0, 'NAA8', 1930801798.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100035877, 'DUNKIN corp', 2020.0, 1930671337.0, '2020-03-23', 20200319, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 2911.66, 20200323.0, 'NAA8', 1930671337.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200713007, 'KEEFE in', 2020.0, 1930611929.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 39984.0, 20200306.0, 'NAA8', 1930611929.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER in', 2020.0, 1930819688.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 501.89, 20200424.0, 'NAA8', 1930819688.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO in', 2020.0, 1930789457.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 26664.52, 20200415.0, 'NAA8', 1930789457.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930727068.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 53393.59, 20200401.0, 'NAU5', 1930727068.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930657340.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 8793.09, 20200318.0, 'NAAX', 1930657340.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200458131, 'TIMES in', 2020.0, 1930582074.0, '2020-03-06', 20200302, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 6588.93, 20200306.0, 'NAA8', 1930582074.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE systems', 2020.0, 1930763644.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 24967.0, 20200408.0, 'NAA8', 1930763644.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU corp', 2020.0, 1930757494.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 12659.84, 20200407.0, 'NAA8', 1930757494.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930585132.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 34487.02, 20200301.0, 'NAH4', 1930585132.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI us', 2020.0, 1930727479.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 47611.03, 20200331.0, 'NAA8', 1930727479.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR corporation', 2020.0, 1930598902.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 2105.89, 20200303.0, 'NAA8', 1930598902.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA us', 2020.0, 1930774982.0, '2020-04-11', 20200411, 20200411, '2020-06-15', 'USD', 'RV', 1.0, 17042.05, 20200411.0, 'NAGD', 1930774982.0, 1, '2020-06-11', 'early' ); /* INSERT QUERY NO: 518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930599403.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 22845.79, 20200304.0, 'NAH4', 1930599403.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930619712.0, '2020-03-10', 20200307, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 47093.98, 20200310.0, 'NAAX', 1930619712.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930635643.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 10502.83, 20200312.0, 'NAH4', 1930635643.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930696287.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 23186.49, 20200326.0, 'NAH4', 1930696287.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200382900, 'J & J corporation', 2020.0, 1930718598.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 128839.94, 20200330.0, 'NAA8', 1930718598.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930725531.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 460.2, 20200401.0, 'NAA8', 1930725531.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930831311.0, '2020-04-30', 20200428, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 22351.75, 20200430.0, 'NAC6', 1930831311.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930848685.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 26130.42, 20200504.0, 'NAH4', 1930848685.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930611329.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 10994.29, 20200307.0, 'NAH4', 1930611329.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT systems', 2020.0, 1930572028.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 79223.98, 20200228.0, 'NAA8', 1930572028.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930774425.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 5027.38, 20200410.0, 'NAA8', 1930774425.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930768616.0, '2020-04-09', 20200409, 20200409, '2020-06-13', 'USD', 'RV', 1.0, 1676.31, 20200409.0, 'NAGD', 1930768616.0, 1, '2020-06-10', 'early' ); /* INSERT QUERY NO: 530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930777699.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 60128.8, 20200411.0, 'NAU5', 1930777699.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930757254.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 40610.75, 20200407.0, 'NAH4', 1930757254.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH foundation', 2020.0, 1930753143.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 55545.01, 20200406.0, 'NAA8', 1930753143.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930825406.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 937.2, 20200424.0, 'NAU5', 1930825406.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200452949, 'VARI corp', 2020.0, 1930666246.0, '2020-03-24', 20200318, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 5115.85, 20200324.0, 'NAA8', 1930666246.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930725305.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 33784.67, 20200331.0, 'NAU5', 1930725305.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930755176.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 15005.29, 20200407.0, 'NAH4', 1930755176.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930858233.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 29379.59, 20200505.0, 'NAH4', 1930858233.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930749895.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 132449.35, 20200405.0, 'NAC6', 1930749895.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930890403.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 8683.41, 20200511.0, 'NAH4', 1930890403.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930808108.0, '2020-04-21', 20200421, 20200421, '2020-04-23', 'USD', 'RV', 1.0, 6470.62, 20200416.0, 'NAM1', 1930808108.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC foundation', 2020.0, 1930858670.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 347.04, 20200501.0, 'NAM4', 1930858670.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930792398.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 55616.5, 20200415.0, 'NAU5', 1930792398.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corporation', 2020.0, 1930855315.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 68870.09, 20200504.0, 'NAA8', 1930855315.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930832273.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 8632.43, 20200429.0, 'NAH4', 1930832273.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930686485.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 70713.56, 20200323.0, 'NAC6', 1930686485.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930714835.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 661.11, 20200329.0, 'NAH4', 1930714835.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100052024, 'CPG us', 2020.0, 1930810204.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 50443.11, 20200421.0, 'NAA8', 1930810204.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930804925.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 3270.04, 20200421.0, 'NAH4', 1930804925.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG llc', 2020.0, 1930798827.0, '2020-04-23', 20200417, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 11903.23, 20200423.0, 'NAA8', 1930798827.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930693102.0, '2020-03-27', 20200324, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 4738.98, 20200327.0, 'NAA8', 1930693102.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930623754.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 24902.86, 20200310.0, 'NAA8', 1930623754.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930792943.0, '2020-04-18', 20200415, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 22292.54, 20200418.0, 'NAH4', 1930792943.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA corporation', 2020.0, 1930655162.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 13883.47, 20200317.0, 'NAH4', 1930655162.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - corp', 2020.0, 1930796190.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 59786.12, 20200417.0, 'NAA8', 1930796190.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930685086.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 46210.94, 20200322.0, 'NAH4', 1930685086.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930592616.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 72345.4, 20200303.0, 'NAH4', 1930592616.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW in', 2020.0, 1930598613.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 37795.18, 20200305.0, 'NAA8', 1930598613.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930717160.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 31079.66, 20200330.0, 'NAH4', 1930717160.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930666220.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 20538.32, 20200319.0, 'NAH4', 1930666220.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930800662.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 1898.2, 20200419.0, 'NAH4', 1930800662.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930725136.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 45290.95, 20200331.0, 'NAA8', 1930725136.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO systems', 2020.0, 1930561568.0, '2020-03-02', 20200302, 20200302, '2020-04-03', 'USD', 'RV', 1.0, 9160.75, 20200302.0, 'NA32', 1930561568.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078854, 'MC A associates', 2020.0, 1930661043.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 35948.24, 20200317.0, 'NAA8', 1930661043.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930689657.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 54983.38, 20200325.0, 'NAH4', 1930689657.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100047471, 'ALL corp', 2020.0, 1930870756.0, '2020-05-07', 20200507, 20200507, '2020-05-17', 'USD', 'RV', 1.0, 9783.0, 20200507.0, 'NA10', 1930870756.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930599755.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 125.04, 20200301.0, 'NAM4', 1930599755.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT corp', 2020.0, 1930614018.0, '2020-03-08', 20200306, 20200308, '2020-04-12', 'USD', 'RV', 1.0, 17316.0, 20200308.0, 'NAG2', 1930614018.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL systems', 2020.0, 1930687038.0, '2020-03-26', 20200323, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 33295.02, 20200326.0, 'NAA8', 1930687038.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930624316.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 63521.88, 20200310.0, 'NAA8', 1930624316.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001452, 'COASTAL trust', 2020.0, 1930561154.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 7381.02, 20200302.0, 'NAA8', 1930561154.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F llc', 2020.0, 2960627468.0, '2020-04-13', 20200413, 20200413, '2020-04-26', 'CAD', 'RV', 1.0, 40569.32, 20200416.0, 'CA10', 2960627468.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930708523.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 99934.89, 20200326.0, 'NAA8', 1930708523.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930752878.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 1889.0, 20200406.0, 'NAH4', 1930752878.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ llc', 2020.0, 1930628045.0, '2020-03-09', 20200310, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 15172.08, 20200309.0, 'NAA8', 1930628045.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930703326.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 4579.74, 20200325.0, 'NAAX', 1930703326.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930586563.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 322.12, 20200302.0, 'NAA8', 1930586563.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930630336.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 68412.39, 20200310.0, 'NAAX', 1930630336.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930681706.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 40569.35, 20200321.0, 'NAH4', 1930681706.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930660721.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 45305.03, 20200317.0, 'NAH4', 1930660721.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER co', 2020.0, 1930768032.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 37059.54, 20200409.0, 'NAA8', 1930768032.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930743004.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 29224.37, 20200404.0, 'NAA8', 1930743004.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930717171.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 7425.6, 20200330.0, 'NAC6', 1930717171.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930731923.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 39973.18, 20200402.0, 'NAA8', 1930731923.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200230690, 'DECA foundation', 2020.0, 1930672421.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 7914.83, 20200316.0, 'NAM4', 1930672421.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930857426.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 6220.8, 20200504.0, 'NAA8', 1930857426.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR trust', 2020.0, 1930652693.0, '2020-03-15', 20200314, 20200315, '2020-05-19', 'USD', 'RV', 1.0, 12428.82, 20200315.0, 'NAGD', 1930652693.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930681989.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 5952.34, 20200322.0, 'NAH4', 1930681989.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930834464.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 20883.14, 20200429.0, 'NAH4', 1930834464.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103335, 'PARAM co', 2020.0, 1991840719.0, '2020-03-09', 20200305, 20200309, '2020-04-08', 'USD', 'RV', 1.0, 10944.3, 20200309.0, 'NAVE', 1991840719.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930729090.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 21932.7, 20200402.0, 'NAH4', 1930729090.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930665633.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 27066.15, 20200320.0, 'NAH4', 1930665633.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930599860.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 142.89, 20200305.0, 'NAA8', 1930599860.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC foundation', 2020.0, 1930818201.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 14538.19, 20200416.0, 'NAM1', 1930818201.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930763489.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 35765.05, 20200408.0, 'NAA8', 1930763489.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930620165.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 2576.47, 20200307.0, 'NAH4', 1930620165.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943275, 'US co', 2020.0, 1930627230.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 37593.47, 20200309.0, 'NAA8', 1930627230.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930739117.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 37137.87, 20200404.0, 'NAH4', 1930739117.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930797022.0, '2020-04-20', 20200416, 20200420, '2020-06-24', 'USD', 'RV', 1.0, 2403.04, 20200420.0, 'NAGD', 1930797022.0, 1, '2020-06-19', 'early' ); /* INSERT QUERY NO: 599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO co', 2020.0, 2960625960.0, '2020-04-02', 20200402, 20200402, '2020-04-12', 'CAD', 'RV', 1.0, 73726.94, 20200402.0, 'CA10', 2960625960.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER in', 2020.0, 1930647619.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 113566.1, 20200313.0, 'NAA8', 1930647619.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930787524.0, '2020-04-17', 20200414, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 32481.88, 20200417.0, 'NAAX', 1930787524.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930874515.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 13327.46, 20200507.0, 'NAH4', 1930874515.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930806261.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 30841.22, 20200422.0, 'NAH4', 1930806261.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930655477.0, '2020-03-13', 20200316, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 618.99, 20200313.0, 'NAA8', 1930655477.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE in', 2020.0, 1930788542.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 24483.8, 20200417.0, 'NAA8', 1930788542.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930746744.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 19489.37, 20200405.0, 'NAH4', 1930746744.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930651351.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 1898.9, 20200315.0, 'NAH4', 1930651351.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200268458, 'PERFOR in', 2020.0, 1930722973.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 39324.21, 20200331.0, 'NAA8', 1930722973.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930606102.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 1183.12, 20200305.0, 'NAA8', 1930606102.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930831003.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 35141.57, 20200428.0, 'NAH4', 1930831003.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799538, 'UNITE systems', 2020.0, 1930826945.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 96719.11, 20200425.0, 'NAA8', 1930826945.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930642146.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 98728.37, 20200314.0, 'NAA8', 1930642146.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930809210.0, '2020-04-18', 20200421, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 1304.93, 20200418.0, 'NAA8', 1930809210.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST co', 2020.0, 1930858256.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 14196.02, 20200507.0, 'NAAX', 1930858256.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200382900, 'J & J corp', 2020.0, 1930802776.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 163464.88, 20200420.0, 'NAA8', 1930802776.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE corp', 2020.0, 1930781329.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 2382.55, 20200413.0, 'NAA8', 1930781329.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930842070.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 39938.67, 20200501.0, 'NAA8', 1930842070.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930692581.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 16409.83, 20200325.0, 'NAH4', 1930692581.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0140142846, 'MONDE in', 2020.0, 1930639619.0, '2020-03-16', 20200311, 20200316, '2020-05-15', 'USD', 'RV', 1.0, 17428.5, 20200316.0, 'NACB', 1930639619.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200865160, 'MAX foundation', 2020.0, 1930774704.0, '2020-04-15', 20200410, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 6445.29, 20200415.0, 'NAA8', 1930774704.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER us', 2020.0, 2960631707.0, '2020-04-28', 20200428, 20200428, '2020-05-16', 'CAD', 'RV', 1.0, 4675.6, 20200506.0, 'CA10', 2960631707.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930858216.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 60968.7, 20200504.0, 'NAC6', 1930858216.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930623055.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 10023.74, 20200309.0, 'NAH4', 1930623055.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA llc', 2020.0, 1930607003.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 4647.72, 20200301.0, 'NAM4', 1930607003.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & systems', 2020.0, 1930703658.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 19544.7, 20200325.0, 'NAA8', 1930703658.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930651748.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 13765.6, 20200314.0, 'NAAX', 1930651748.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT associates', 2020.0, 1930664113.0, '2020-03-18', 20200317, 20200318, '2020-04-22', 'USD', 'RV', 1.0, 454.74, 20200318.0, 'NAG2', 1930664113.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930777596.0, '2020-04-10', 20200411, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 58293.7, 20200410.0, 'NAU5', 1930777596.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930581085.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 15539.43, 20200301.0, 'NAH4', 1930581085.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO co', 2020.0, 2960623076.0, '2020-03-22', 20200322, 20200322, '2020-04-02', 'CAD', 'RV', 1.0, 62085.37, 20200323.0, 'CA10', 2960623076.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930718589.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 37908.52, 20200329.0, 'NAH4', 1930718589.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930717276.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 21436.31, 20200330.0, 'NAC6', 1930717276.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200580232, 'INTERR systems', 2020.0, 1930593942.0, '2020-03-02', 20200303, 20200302, '2020-03-12', 'USD', 'RV', 1.0, 40652.5, 20200302.0, 'NA10', 1930593942.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930793997.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 661.11, 20200416.0, 'NAH4', 1930793997.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930860470.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 95833.46, 20200507.0, 'NAC6', 1930860470.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corp', 2020.0, 1930606658.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 2497.01, 20200301.0, 'NAM4', 1930606658.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW systems', 2020.0, 1930793963.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 6084.49, 20200415.0, 'NAA8', 1930793963.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC llc', 2020.0, 1930599382.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 398.16, 20200301.0, 'NAM4', 1930599382.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M associates', 2020.0, 2960631842.0, '2020-04-30', 20200501, 20200430, '2020-05-12', 'CAD', 'RV', 1.0, 54271.31, 20200502.0, 'CA10', 2960631842.0, 1, '2020-05-16', '0-15 days' ); /* INSERT QUERY NO: 640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930880137.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 62777.04, 20200509.0, 'NAH4', 1930880137.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930690570.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 6154.1, 20200324.0, 'NAH4', 1930690570.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900212, 'CASEY corp', 2020.0, 1930790888.0, '2020-04-15', 20200415, 20200415, '2020-06-19', 'USD', 'RV', 1.0, 358.55, 20200415.0, 'NAGD', 1930790888.0, 1, '2020-06-17', 'early' ); /* INSERT QUERY NO: 643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930605747.0, '2020-03-06', 20200305, 20200306, '2020-05-10', 'USD', 'RV', 1.0, 767.69, 20200306.0, 'NAGD', 1930605747.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW ', 2020.0, 1930608231.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 21930.57, 20200306.0, 'NAA8', 1930608231.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030964, 'NATURA corp', 2020.0, 1930850346.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 15747.85, 20200505.0, 'NAA8', 1930850346.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930691312.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 5143.03, 20200324.0, 'NAH4', 1930691312.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930686453.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 104122.17, 20200322.0, 'NAA8', 1930686453.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930861885.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 37660.07, 20200506.0, 'NAH4', 1930861885.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930604815.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 16193.36, 20200306.0, 'NAC6', 1930604815.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930779346.0, '2020-04-14', 20200412, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 661.11, 20200414.0, 'NAH4', 1930779346.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930769010.0, '2020-04-13', 20200409, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 2194.5, 20200413.0, 'NAA8', 1930769010.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930737817.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 687.68, 20200403.0, 'NAC6', 1930737817.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200076137, 'OLLIE ', 2020.0, 1930594142.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 12142.8, 20200303.0, 'NAA8', 1930594142.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930674292.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 57741.26, 20200321.0, 'NAH4', 1930674292.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930732062.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 12764.34, 20200404.0, 'NAA8', 1930732062.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930707388.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 1898.2, 20200326.0, 'NAH4', 1930707388.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930794546.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 19210.63, 20200417.0, 'NAH4', 1930794546.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930833708.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 3511.42, 20200428.0, 'NAU5', 1930833708.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M foundation', 2020.0, 2960632318.0, '2020-05-01', 20200501, 20200501, '2020-05-11', 'CAD', 'RV', 1.0, 1092.1, 20200501.0, 'CA10', 2960632318.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO corporation', 2020.0, 2960619414.0, '2020-03-06', 20200306, 20200306, '2020-03-26', 'CAD', 'RV', 1.0, 129750.0, 20200316.0, 'CA10', 2960619414.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930751486.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 3260.41, 20200406.0, 'NAAX', 1930751486.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930810109.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 1299.72, 20200422.0, 'NAH4', 1930810109.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078795, 'H T H trust', 2020.0, 1930701787.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 267.39, 20200325.0, 'NAA8', 1930701787.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930773725.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 25953.94, 20200411.0, 'NAC6', 1930773725.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ corp', 2020.0, 1930671273.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 144022.47, 20200320.0, 'NAA8', 1930671273.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F corporation', 2020.0, 1930627653.0, '2020-03-12', 20200309, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 271.75, 20200312.0, 'NAA8', 1930627653.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930617558.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 75922.22, 20200307.0, 'NAU5', 1930617558.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE associates', 2020.0, 1930718029.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 122961.19, 20200330.0, 'NAA8', 1930718029.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930598636.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 15276.16, 20200305.0, 'NAH4', 1930598636.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200755701, 'ASSOCI co', 2020.0, 1930833943.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 74346.37, 20200429.0, 'NAA8', 1930833943.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930643056.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 1898.9, 20200313.0, 'NAH4', 1930643056.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930583256.0, '2020-02-29', 20200229, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 9177.94, 20200229.0, 'NAGD', 1930583256.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200881076, 'ALBERT systems', 2020.0, 1930705838.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 44455.12, 20200326.0, 'NAA8', 1930705838.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corp', 2020.0, 1930696225.0, '2020-03-25', 20200325, 20200325, '2020-04-08', 'USD', 'RV', 1.0, 2964.46, 20200316.0, 'NAM4', 1930696225.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930831954.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 8444.48, 20200429.0, 'NAH4', 1930831954.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA foundation', 2020.0, 1930700594.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 7951.82, 20200325.0, 'NAH4', 1930700594.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930709952.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 2738.02, 20200329.0, 'NAH4', 1930709952.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930654686.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 20557.14, 20200317.0, 'NAAX', 1930654686.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930581878.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 25104.04, 20200301.0, 'NAH4', 1930581878.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930718698.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 52843.36, 20200331.0, 'NAA8', 1930718698.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930748523.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 12240.48, 20200404.0, 'NAH4', 1930748523.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930585520.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 65617.93, 20200302.0, 'NAH4', 1930585520.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930773972.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 5183.53, 20200411.0, 'NAH4', 1930773972.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930653760.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 65754.98, 20200317.0, 'NAH4', 1930653760.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930701382.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 16575.01, 20200327.0, 'NAH4', 1930701382.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930747335.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 50117.26, 20200406.0, 'NAH4', 1930747335.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930753812.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 98872.75, 20200406.0, 'NAC6', 1930753812.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M us', 2020.0, 1930783015.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 10408.68, 20200415.0, 'NAA8', 1930783015.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO associates', 2020.0, 1930637825.0, '2020-03-13', 20200311, 20200313, '2020-04-14', 'USD', 'RV', 1.0, 60188.92, 20200313.0, 'NA32', 1930637825.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930700580.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 21194.07, 20200325.0, 'NAH4', 1930700580.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930684506.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 7020.53, 20200323.0, 'NAH4', 1930684506.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO systems', 2020.0, 1930604596.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 4689.0, 20200306.0, 'NAA8', 1930604596.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930837835.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 17371.12, 20200428.0, 'NAU5', 1930837835.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930661713.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 602.04, 20200318.0, 'NAH4', 1930661713.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930777781.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 3059.2, 20200412.0, 'NAC6', 1930777781.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930685809.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 13065.2, 20200324.0, 'NAH4', 1930685809.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100000222, 'SMITHFIE llc', 2020.0, 1930797584.0, '2020-04-22', 20200417, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 16704.96, 20200422.0, 'NAA8', 1930797584.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930605955.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 44798.35, 20200305.0, 'NAA8', 1930605955.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930636663.0, '2020-03-10', 20200311, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 1149.27, 20200310.0, 'NAH4', 1930636663.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930653434.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 56287.57, 20200314.0, 'NAH4', 1930653434.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930798453.0, '2020-04-17', 20200417, 20200417, '2020-06-21', 'USD', 'RV', 1.0, 8368.4, 20200417.0, 'NAGD', 1930798453.0, 1, '2020-06-18', 'early' ); /* INSERT QUERY NO: 702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100055606, 'ALVARE associates', 2020.0, 1991839927.0, '2020-02-27', 20200225, 20200227, '2020-03-28', 'USD', 'RV', 1.0, 23552.28, 20200227.0, 'NAVE', 1991839927.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930582670.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 708.82, 20200302.0, 'NAH4', 1930582670.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930665929.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 32829.96, 20200319.0, 'NAH4', 1930665929.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960627276.0, '2020-04-08', 20200408, 20200408, '2020-04-20', 'CAD', 'RV', 1.0, 79288.17, 20200410.0, 'CA10', 2960627276.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930862467.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 56284.77, 20200506.0, 'NAH4', 1930862467.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200413420, 'PRE us', 2020.0, 1930608190.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 37913.72, 20200305.0, 'NAA8', 1930608190.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930604321.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 15138.07, 20200306.0, 'NAH4', 1930604321.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930826292.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 17464.47, 20200425.0, 'NAA8', 1930826292.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930857670.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 53475.17, 20200505.0, 'NAH4', 1930857670.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930782399.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 60990.16, 20200414.0, 'NAA8', 1930782399.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA co', 2020.0, 1930745270.0, '2020-04-04', 20200404, 20200404, '2020-04-08', 'USD', 'RV', 1.0, 2718.47, 20200401.0, 'NAM1', 1930745270.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200529372, 'GHC corp', 2020.0, 1930578951.0, '2020-02-29', 20200227, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 126751.6, 20200229.0, 'NAGD', 1930578951.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930828703.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 28448.37, 20200426.0, 'NAH4', 1930828703.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930853086.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 71834.54, 20200505.0, 'NAH4', 1930853086.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA trust', 2020.0, 1930808524.0, '2020-04-21', 20200421, 20200421, '2020-05-09', 'USD', 'RV', 1.0, 606.32, 20200416.0, 'NAM4', 1930808524.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S associates', 2020.0, 1930677237.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 59.29, 20200321.0, 'NAA8', 1930677237.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930817054.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 69708.84, 20200424.0, 'NAA8', 1930817054.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930720045.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 16868.68, 20200330.0, 'NAH4', 1930720045.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100015557, 'BI co', 2020.0, 1930641503.0, '2020-03-11', 20200311, 20200311, '2020-05-15', 'USD', 'RV', 1.0, 1949.06, 20200311.0, 'NAGD', 1930641503.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930685856.0, '2020-03-23', 20200323, 20200323, '2020-05-27', 'USD', 'RV', 1.0, 889.63, 20200323.0, 'NAGD', 1930685856.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT foundation', 2020.0, 1930789117.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 32256.53, 20200415.0, 'NAA8', 1930789117.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930600086.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 4916.35, 20200305.0, 'NAH4', 1930600086.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930798041.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 10679.01, 20200420.0, 'NAH4', 1930798041.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930690388.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 3270.04, 20200323.0, 'NAH4', 1930690388.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corporation', 2020.0, 1930670678.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 85291.67, 20200318.0, 'NAA8', 1930670678.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930800412.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 11449.53, 20200419.0, 'NAH4', 1930800412.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT llc', 2020.0, 1930707340.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 3754.61, 20200326.0, 'NAU5', 1930707340.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE trust', 2020.0, 1930834528.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 112180.62, 20200429.0, 'NAA8', 1930834528.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M trust', 2020.0, 1930704977.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 91028.57, 20200328.0, 'NAA8', 1930704977.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930675135.0, '2020-03-20', 20200320, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 4234.47, 20200320.0, 'NAGD', 1930675135.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT ', 2020.0, 1930671705.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 16324.68, 20200319.0, 'NAU5', 1930671705.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200854853, 'MARTIN associates', 2020.0, 1930783674.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 20379.6, 20200414.0, 'NAA8', 1930783674.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN ', 2020.0, 1930675425.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 37364.67, 20200320.0, 'NAA8', 1930675425.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA trust', 2020.0, 1930690324.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 11902.1, 20200316.0, 'NAM4', 1930690324.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930677052.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 10342.38, 20200322.0, 'NAA8', 1930677052.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200725421, 'BEN ', 2020.0, 1930701385.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 23736.09, 20200327.0, 'NAA8', 1930701385.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930618911.0, '2020-03-06', 20200307, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 7667.09, 20200306.0, 'NAA8', 1930618911.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE systems', 2020.0, 1930671188.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 7285.77, 20200321.0, 'NAA8', 1930671188.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960627208.0, '2020-04-06', 20200406, 20200406, '2020-04-19', 'CAD', 'RV', 1.0, 183428.62, 20200409.0, 'CA10', 2960627208.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930683891.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 4747.92, 20200322.0, 'NAH4', 1930683891.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930652915.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 18749.57, 20200315.0, 'NAH4', 1930652915.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783190, 'PIT associates', 2020.0, 1930708385.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 5667.38, 20200331.0, 'NAA8', 1930708385.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH in', 2020.0, 1930780869.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 50605.19, 20200413.0, 'NAA8', 1930780869.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930623248.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 80042.81, 20200310.0, 'NAH4', 1930623248.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100024102, 'FELI ', 2020.0, 1991841216.0, '2020-03-16', 20200313, 20200316, '2020-04-15', 'USD', 'RV', 1.0, 35359.19, 20200316.0, 'NAVE', 1991841216.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT corporation', 2020.0, 1930714665.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 72460.13, 20200327.0, 'NAA8', 1930714665.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930593824.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 24936.63, 20200305.0, 'NAH4', 1930593824.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930688856.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 556.91, 20200322.0, 'NAA8', 1930688856.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE trust', 2020.0, 1930593422.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 2086.08, 20200303.0, 'NAA8', 1930593422.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA us', 2020.0, 1930879090.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 3193.86, 20200501.0, 'NAM4', 1930879090.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930654166.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 14761.31, 20200316.0, 'NAA8', 1930654166.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR co', 2020.0, 1930692539.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 76967.37, 20200325.0, 'NAA8', 1930692539.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930829249.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 13938.76, 20200428.0, 'NAH4', 1930829249.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960631944.0, '2020-04-30', 20200430, 20200430, '2020-05-11', 'CAD', 'RV', 1.0, 54142.6, 20200501.0, 'CA10', 2960631944.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930772381.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 844.41, 20200409.0, 'NAA8', 1930772381.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930703621.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 49658.98, 20200326.0, 'NAH4', 1930703621.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S systems', 2020.0, 1930675246.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 28358.78, 20200319.0, 'NAA8', 1930675246.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ foundation', 2020.0, 1930628151.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 19143.26, 20200310.0, 'NAA8', 1930628151.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930747029.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 106066.45, 20200405.0, 'NAA8', 1930747029.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB trust', 2020.0, 2960618210.0, '2020-03-02', 20200302, 20200302, '2020-03-20', 'CAD', 'RV', 1.0, 77712.59, 20200310.0, 'CA10', 2960618210.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930842359.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 32795.02, 20200501.0, 'NAH4', 1930842359.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR associates', 2020.0, 1930831324.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 11469.55, 20200428.0, 'NAA8', 1930831324.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930758258.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 91.93, 20200407.0, 'NAH4', 1930758258.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930604878.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 16256.41, 20200305.0, 'NAH4', 1930604878.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043892, 'IN-N corp', 2020.0, 1930581363.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 15547.82, 20200228.0, 'NAA8', 1930581363.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930685075.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 756.17, 20200322.0, 'NAH4', 1930685075.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960620329.0, '2020-03-11', 20200311, 20200311, '2020-03-21', 'CAD', 'RV', 1.0, 96014.46, 20200311.0, 'CA10', 2960620329.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742344, 'MAINES us', 2020.0, 1930870363.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 19924.63, 20200506.0, 'NAA8', 1930870363.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930629471.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 78075.39, 20200312.0, 'NAH4', 1930629471.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC llc', 2020.0, 1930820307.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 417.72, 20200416.0, 'NAM4', 1930820307.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL foundation', 2020.0, 1930720629.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 9191.16, 20200331.0, 'NAA8', 1930720629.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930606216.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 106745.81, 20200304.0, 'NAA8', 1930606216.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930827600.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 18181.18, 20200425.0, 'NAH4', 1930827600.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F corporation', 2020.0, 1930688949.0, '2020-03-28', 20200323, 20200328, '2020-04-17', 'USD', 'RV', 1.0, 2684.05, 20200328.0, 'NAD1', 1930688949.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR us', 2020.0, 1930629825.0, '2020-03-10', 20200310, 20200310, '2020-04-11', 'USD', 'RV', 1.0, 70533.12, 20200310.0, 'NA32', 1930629825.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960626892.0, '2020-04-12', 20200412, 20200412, '2020-04-22', 'CAD', 'RV', 1.0, 41497.48, 20200412.0, 'CA10', 2960626892.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO in', 2020.0, 2960632306.0, '2020-04-30', 20200430, 20200430, '2020-05-14', 'CAD', 'RV', 1.0, 70932.43, 20200504.0, 'CA10', 2960632306.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930584403.0, '2020-03-04', 20200229, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 13638.44, 20200304.0, 'NAH4', 1930584403.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930608264.0, '2020-03-05', 20200305, 20200305, '2020-04-06', 'USD', 'RV', 1.0, 49764.84, 20200305.0, 'NA32', 1930608264.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930656129.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 140976.65, 20200317.0, 'NAA8', 1930656129.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960625590.0, '2020-04-04', 20200404, 20200404, '2020-04-15', 'CAD', 'RV', 1.0, 3983.66, 20200405.0, 'CA10', 2960625590.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE co', 2020.0, 1930877434.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 23130.22, 20200507.0, 'NAA8', 1930877434.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200076137, 'OLLIE co', 2020.0, 1930822727.0, '2020-04-30', 20200424, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 1814.4, 20200430.0, 'NAA8', 1930822727.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930783186.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 56073.01, 20200415.0, 'NAH4', 1930783186.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE trust', 2020.0, 1930723822.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 24186.82, 20200330.0, 'NAA8', 1930723822.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930621988.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 51228.53, 20200308.0, 'NAH4', 1930621988.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS ', 2020.0, 1930782214.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 20545.91, 20200415.0, 'NAA8', 1930782214.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930687595.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 943.12, 20200323.0, 'NAH4', 1930687595.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU us', 2020.0, 1930737958.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 51009.07, 20200404.0, 'NAA8', 1930737958.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corporation', 2020.0, 1930692261.0, '2020-03-24', 20200324, 20200324, '2020-03-23', 'USD', 'RV', 1.0, 10887.75, 20200316.0, 'NAM1', 1930692261.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER trust', 2020.0, 1930797437.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 27313.39, 20200418.0, 'NAA8', 1930797437.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW in', 2020.0, 1930581309.0, '2020-02-27', 20200228, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 73787.3, 20200227.0, 'NAA8', 1930581309.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200139730, 'AGR corporation', 2020.0, 1930834136.0, '2020-04-28', 20200428, 20200428, '2020-05-28', 'USD', 'RV', 1.0, 5171.75, 20200428.0, 'NAD5', 1930834136.0, 1, '2020-05-26', 'early' ); /* INSERT QUERY NO: 795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930858035.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 417.96, 20200501.0, 'NAM4', 1930858035.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- systems', 2020.0, 2960621352.0, '2020-03-17', 20200317, 20200317, '2020-03-27', 'CAD', 'RV', 1.0, 18621.0, 20200317.0, 'CA10', 2960621352.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO in', 2020.0, 1930586515.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 2327.41, 20200302.0, 'NAA8', 1930586515.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930581084.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 16371.41, 20200301.0, 'NAH4', 1930581084.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG ', 2020.0, 1930857603.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 4309.57, 20200504.0, 'NAA8', 1930857603.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930714195.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 37236.76, 20200328.0, 'NAH4', 1930714195.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200002965, 'DECA in', 2020.0, 1930818347.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 183023.56, 20200416.0, 'NAM1', 1930818347.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C corporation', 2020.0, 1930741078.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 9577.25, 20200403.0, 'NAA8', 1930741078.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200735528, 'ASSOCIA systems', 2020.0, 1930665724.0, '2020-03-19', 20200318, 20200319, '2020-05-23', 'USD', 'RV', 1.0, 22746.21, 20200319.0, 'NAGD', 1930665724.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930646577.0, '2020-03-12', 20200313, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 14148.22, 20200312.0, 'NAGD', 1930646577.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930593878.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 15674.91, 20200304.0, 'NAA8', 1930593878.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC systems', 2020.0, 1930641986.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 361.38, 20200312.0, 'NAA8', 1930641986.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930803053.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 66734.29, 20200421.0, 'NAA8', 1930803053.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930810240.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 45942.96, 20200423.0, 'NAH4', 1930810240.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M associates', 2020.0, 2960618547.0, '2020-03-05', 20200305, 20200305, '2020-03-15', 'CAD', 'RV', 1.0, 54023.75, 20200305.0, 'CA10', 2960618547.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO systems', 2020.0, 2960623385.0, '2020-03-26', 20200326, 20200326, '2020-04-12', 'CAD', 'RV', 1.0, 56172.85, 20200402.0, 'CA10', 2960623385.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930681203.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 14799.77, 20200321.0, 'NAH4', 1930681203.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930839185.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 6054.89, 20200501.0, 'NAA8', 1930839185.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200854853, 'MARTIN systems', 2020.0, 1930676537.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 20379.6, 20200320.0, 'NAA8', 1930676537.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930851583.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 55764.78, 20200505.0, 'NAH4', 1930851583.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930801314.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 12219.74, 20200420.0, 'NAH4', 1930801314.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR trust', 2020.0, 1930557621.0, '2020-02-27', 20200221, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 19722.9, 20200227.0, 'NAA8', 1930557621.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930813675.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 38653.01, 20200422.0, 'NAH4', 1930813675.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930671407.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 9586.43, 20200320.0, 'NAH4', 1930671407.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG systems', 2020.0, 1930598768.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 49544.04, 20200303.0, 'NAA8', 1930598768.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT ', 2020.0, 1930856937.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 42842.72, 20200505.0, 'NAA8', 1930856937.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930819530.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 21976.11, 20200423.0, 'NAU5', 1930819530.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930792955.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 8177.66, 20200416.0, 'NAC6', 1930792955.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930615231.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 14134.04, 20200306.0, 'NAU5', 1930615231.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930752907.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 361.01, 20200405.0, 'NAA8', 1930752907.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930705244.0, '2020-03-24', 20200326, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 3131.78, 20200324.0, 'NAA8', 1930705244.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930690799.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 12829.01, 20200324.0, 'NAH4', 1930690799.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO corporation', 2020.0, 2960619674.0, '2020-03-09', 20200309, 20200309, '2020-03-20', 'CAD', 'RV', 1.0, 18609.9, 20200310.0, 'CA10', 2960619674.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200752302, 'KROGER associates', 2020.0, 1930726766.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 111139.1, 20200331.0, 'NAA8', 1930726766.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930772598.0, '2020-04-11', 20200410, 20200411, '2020-06-15', 'USD', 'RV', 1.0, 767.69, 20200411.0, 'NAGD', 1930772598.0, 1, '2020-06-12', 'early' ); /* INSERT QUERY NO: 830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200785971, 'SYSCO associates', 2020.0, 1930620313.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 6695.62, 20200309.0, 'NAA8', 1930620313.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930655219.0, '2020-03-16', 20200316, 20200316, '2020-05-20', 'USD', 'RV', 1.0, 10349.45, 20200316.0, 'NAGD', 1930655219.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930817045.0, '2020-04-22', 20200423, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 83517.13, 20200422.0, 'NAU5', 1930817045.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930668375.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 9333.44, 20200319.0, 'NAH4', 1930668375.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930575775.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 50844.44, 20200227.0, 'NAH4', 1930575775.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930800348.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 19978.13, 20200418.0, 'NAA8', 1930800348.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741831, 'SUPE co', 2020.0, 1930773422.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 14195.47, 20200410.0, 'NAA8', 1930773422.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930797738.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 6783.29, 20200417.0, 'NAH4', 1930797738.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739534, 'OK trust', 2020.0, 1930875576.0, '2020-05-09', 20200507, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 19947.43, 20200509.0, 'NAA8', 1930875576.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI llc', 2020.0, 1930723629.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 82409.9, 20200331.0, 'NAA8', 1930723629.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ llc', 2020.0, 1930655091.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 1933.34, 20200318.0, 'NAA8', 1930655091.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930603100.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 36255.65, 20200304.0, 'NAH4', 1930603100.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200366118, 'AN ', 2020.0, 1930753277.0, '2020-04-10', 20200406, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 12758.63, 20200410.0, 'NAA8', 1930753277.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930744751.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 57163.95, 20200404.0, 'NAH4', 1930744751.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930885289.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 14019.41, 20200511.0, 'NAH4', 1930885289.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960626446.0, '2020-04-04', 20200404, 20200404, '2020-04-16', 'CAD', 'RV', 1.0, 68439.98, 20200406.0, 'CA10', 2960626446.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930854919.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 149389.91, 20200503.0, 'NAC6', 1930854919.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT trust', 2020.0, 1930607694.0, '2020-03-06', 20200305, 20200306, '2020-04-10', 'USD', 'RV', 1.0, 7798.08, 20200306.0, 'NAG2', 1930607694.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA llc', 2020.0, 1930761995.0, '2020-04-08', 20200408, 20200408, '2020-04-24', 'USD', 'RV', 1.0, 282.6, 20200401.0, 'NAM4', 1930761995.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930635372.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 120785.91, 20200311.0, 'NAA8', 1930635372.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY ', 2020.0, 1930718981.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 14472.49, 20200401.0, 'NAC6', 1930718981.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930700810.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 39366.34, 20200325.0, 'NAA8', 1930700810.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930586060.0, '2020-03-02', 20200302, 20200302, '2020-03-08', 'USD', 'RV', 1.0, 1093.12, 20200301.0, 'NAM1', 1930586060.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD associates', 2020.0, 1930669934.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 9151.78, 20200319.0, 'NAA8', 1930669934.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930798929.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 47979.37, 20200417.0, 'NAA8', 1930798929.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930822145.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 5059.68, 20200424.0, 'NAH4', 1930822145.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930703920.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 11393.98, 20200327.0, 'NAA8', 1930703920.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU systems', 2020.0, 1930720649.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 95278.9, 20200330.0, 'NAA8', 1930720649.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO ', 2020.0, 1930857021.0, '2020-05-05', 20200504, 20200505, '2020-05-15', 'USD', 'RV', 1.0, 18135.88, 20200505.0, 'NA10', 1930857021.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930847683.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 51462.76, 20200502.0, 'NAH4', 1930847683.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE associates', 2020.0, 1930799717.0, '2020-04-17', 20200417, 20200417, '2020-06-21', 'USD', 'RV', 1.0, 221654.1, 20200417.0, 'NAGD', 1930799717.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930828118.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 10566.74, 20200427.0, 'NAH4', 1930828118.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930760796.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1516.57, 20200409.0, 'NAA8', 1930760796.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930832827.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 6785.31, 20200429.0, 'NAA8', 1930832827.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C in', 2020.0, 1930664247.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 8608.4, 20200318.0, 'NAA8', 1930664247.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930719463.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 6265.98, 20200401.0, 'NAH4', 1930719463.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO in', 2020.0, 1930782254.0, '2020-04-20', 20200413, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 12394.9, 20200420.0, 'NAA8', 1930782254.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR ', 2020.0, 1930598901.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 5820.79, 20200303.0, 'NAA8', 1930598901.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930717395.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 45676.17, 20200331.0, 'NAH4', 1930717395.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC llc', 2020.0, 1930813153.0, '2020-04-22', 20200422, 20200422, '2020-04-26', 'USD', 'RV', 1.0, 21150.98, 20200416.0, 'NAM2', 1930813153.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930832145.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 59352.68, 20200427.0, 'NAC6', 1930832145.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB us', 2020.0, 2960627767.0, '2020-04-12', 20200412, 20200412, '2020-05-01', 'CAD', 'RV', 1.0, 148965.93, 20200421.0, 'CA10', 2960627767.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742791, 'QUI foundation', 2020.0, 1930673138.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 3409.56, 20200319.0, 'NAA8', 1930673138.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB foundation', 2020.0, 2960625161.0, '2020-04-02', 20200402, 20200402, '2020-04-18', 'CAD', 'RV', 1.0, 64914.26, 20200408.0, 'CA10', 2960625161.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW in', 2020.0, 1930652813.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 18212.54, 20200314.0, 'NAA8', 1930652813.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930782586.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 4290.0, 20200416.0, 'NAA8', 1930782586.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930713281.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 39396.07, 20200328.0, 'NAH4', 1930713281.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA foundation', 2020.0, 1930586570.0, '2020-03-02', 20200302, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 14230.65, 20200302.0, 'NAGD', 1930586570.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & corp', 2020.0, 1930777587.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 142610.22, 20200411.0, 'NAA8', 1930777587.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930751914.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 23285.44, 20200406.0, 'NAH4', 1930751914.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930709284.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 174.58, 20200327.0, 'NAH4', 1930709284.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930584168.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 314.71, 20200301.0, 'NAH4', 1930584168.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930817319.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 6202.06, 20200423.0, 'NAH4', 1930817319.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930862816.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 87.21, 20200507.0, 'NAH4', 1930862816.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100035877, 'DUNKIN foundation', 2020.0, 1930630870.0, '2020-03-13', 20200310, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 13153.1, 20200313.0, 'NAA8', 1930630870.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930708574.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 17108.58, 20200327.0, 'NAA8', 1930708574.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930809267.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 12497.43, 20200422.0, 'NAH4', 1930809267.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797452, 'US corp', 2020.0, 1930671347.0, '2020-03-20', 20200319, 20200320, '2020-04-09', 'USD', 'RV', 1.0, 53228.27, 20200320.0, 'NAD1', 1930671347.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100046479, 'PAPA foundation', 2020.0, 1991841918.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 13886.0, 20200323.0, 'NAVD', 1991841918.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930581584.0, '2020-03-02', 20200229, 20200302, '2020-04-16', 'USD', 'RV', 1.0, 59836.5, 20200302.0, 'NAWP', 1930581584.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE llc', 2020.0, 1930767458.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 86842.34, 20200408.0, 'NAA8', 1930767458.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930789106.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 14336.68, 20200417.0, 'NAH4', 1930789106.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930764431.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 28665.51, 20200408.0, 'NAH4', 1930764431.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930707487.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 3391.14, 20200327.0, 'NAH4', 1930707487.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930687121.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 9802.64, 20200322.0, 'NAH4', 1930687121.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU corporation', 2020.0, 1930641056.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 86371.22, 20200313.0, 'NAA8', 1930641056.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930674522.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 11056.26, 20200316.0, 'NAM2', 1930674522.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL llc', 2020.0, 1930683391.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 21300.0, 20200322.0, 'NAA8', 1930683391.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930737116.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 1414.69, 20200402.0, 'NAH4', 1930737116.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036039, 'GI foundation', 2020.0, 1930814674.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 46354.36, 20200423.0, 'NAA8', 1930814674.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR us', 2020.0, 1930629825.0, '2020-03-10', 20200310, 20200310, '2020-04-11', 'USD', 'RV', 1.0, 70533.12, 20200310.0, 'NA32', 1930629825.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930730426.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 1786.09, 20200401.0, 'NAU5', 1930730426.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930653775.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 3403.8, 20200317.0, 'NAH4', 1930653775.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930838660.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 57600.3, 20200429.0, 'NAU5', 1930838660.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S systems', 2020.0, 1930709470.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 33571.73, 20200327.0, 'NAA8', 1930709470.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778998, 'CE llc', 2020.0, 1930723351.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 69479.59, 20200331.0, 'NAA8', 1930723351.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE llc', 2020.0, 1930833656.0, '2020-04-30', 20200428, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 26442.78, 20200430.0, 'NAA8', 1930833656.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL in', 2020.0, 1930637530.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 95356.27, 20200311.0, 'NAA8', 1930637530.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930632064.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 14940.55, 20200312.0, 'NAH4', 1930632064.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT associates', 2020.0, 1930593841.0, '2020-03-06', 20200303, 20200306, '2020-04-10', 'USD', 'RV', 1.0, 31390.75, 20200306.0, 'NAG2', 1930593841.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR llc', 2020.0, 1930860657.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 47569.32, 20200507.0, 'NAA8', 1930860657.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930802080.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 22605.1, 20200420.0, 'NAA8', 1930802080.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO foundation', 2020.0, 1930763495.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 87232.4, 20200409.0, 'NAA8', 1930763495.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930653296.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 17603.14, 20200317.0, 'NAH4', 1930653296.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930655202.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 18438.91, 20200316.0, 'NAU5', 1930655202.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930766478.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 2284.52, 20200408.0, 'NAA8', 1930766478.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO corp', 2020.0, 1930788921.0, '2020-04-22', 20200415, 20200422, '2020-05-24', 'USD', 'RV', 1.0, 3119.69, 20200422.0, 'NA32', 1930788921.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200978592, 'PLAZA ', 2020.0, 1990572308.0, '2020-03-27', 20200323, 20200327, '2020-05-01', 'USD', 'RV', 1.0, 23043.25, 20200327.0, 'NAG2', 1990572308.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI us', 2020.0, 1930803798.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 47332.45, 20200421.0, 'NAA8', 1930803798.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930818380.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 99560.55, 20200424.0, 'NAA8', 1930818380.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ systems', 2020.0, 1930700673.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 32633.73, 20200325.0, 'NAA8', 1930700673.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930697897.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 5704.21, 20200325.0, 'NAH4', 1930697897.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930585342.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 287.28, 20200302.0, 'NAH4', 1930585342.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U005', 100025658, 'PEA corporation', 2020.0, 1930599138.0, '2020-03-03', 20200304, 20200303, '2020-04-02', 'USD', 'RV', 1.0, 10323.24, 20200303.0, 'NAD5', 1930599138.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930800420.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 14100.67, 20200419.0, 'NAA8', 1930800420.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930719831.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 12755.27, 20200330.0, 'NAU5', 1930719831.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960626490.0, '2020-04-07', 20200407, 20200407, '2020-04-17', 'CAD', 'RV', 1.0, 16761.33, 20200407.0, 'CA10', 2960626490.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - in', 2020.0, 1930630857.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 1278.23, 20200310.0, 'NAA8', 1930630857.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR associates', 2020.0, 1930831058.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 121069.99, 20200428.0, 'NAA8', 1930831058.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO trust', 2020.0, 1930581128.0, '2020-02-28', 20200228, 20200228, '2020-03-09', 'USD', 'RV', 1.0, 18145.19, 20200228.0, 'NA10', 1930581128.0, 1, '2020-02-29', 'early' ); /* INSERT QUERY NO: 930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104432, 'MAYR llc', 2020.0, 2960618995.0, '2020-03-11', 20200311, 20200311, '2020-03-23', 'CAD', 'RV', 1.0, 3222.3, 20200313.0, 'CA10', 2960618995.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930883881.0, '2020-05-10', 20200510, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 18821.97, 20200510.0, 'NAH4', 1930883881.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS systems', 2020.0, 1930592249.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 3060.32, 20200302.0, 'NAA8', 1930592249.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930684653.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 12250.26, 20200324.0, 'NAH4', 1930684653.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL trust', 2020.0, 1930671181.0, '2020-03-26', 20200319, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 11498.11, 20200326.0, 'NAA8', 1930671181.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930655372.0, '2020-03-20', 20200317, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 10808.17, 20200320.0, 'NAA8', 1930655372.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043956, 'E&S llc', 2020.0, 1930598459.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 3430.7, 20200304.0, 'NAD1', 1930598459.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930567786.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 15146.37, 20200227.0, 'NAH4', 1930567786.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corporation', 2020.0, 1930886666.0, '2020-05-12', 20200512, 20200512, '2020-05-11', 'USD', 'RV', 1.0, 4810.08, 20200501.0, 'NAM2', 1930886666.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930789930.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 8957.0, 20200416.0, 'NAA8', 1930789930.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799538, 'UNITE corp', 2020.0, 1930789955.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 82117.76, 20200415.0, 'NAA8', 1930789955.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW co', 2020.0, 1930784770.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 46966.46, 20200414.0, 'NAA8', 1930784770.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930762764.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 7617.25, 20200409.0, 'NAH4', 1930762764.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD ', 2020.0, 1930592480.0, '2020-03-02', 20200302, 20200302, '2020-03-22', 'USD', 'RV', 1.0, 5030.9, 20200302.0, 'NAD1', 1930592480.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930833024.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 42880.07, 20200428.0, 'NAH4', 1930833024.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930699124.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 8949.7, 20200325.0, 'NAH4', 1930699124.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200895843, 'US trust', 2020.0, 1930668258.0, '2020-03-18', 20200318, 20200318, '2020-04-07', 'USD', 'RV', 1.0, 50344.48, 20200318.0, 'NAD1', 1930668258.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW ', 2020.0, 1930566314.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 1715.75, 20200227.0, 'NAA8', 1930566314.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC llc', 2020.0, 1930788308.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 34904.2, 20200414.0, 'NAA8', 1930788308.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200724999, 'GILSTE systems', 2020.0, 1930710707.0, '2020-03-26', 20200327, 20200326, '2020-04-05', 'USD', 'RV', 1.0, 44341.2, 20200326.0, 'NA10', 1930710707.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930662004.0, '2020-03-17', 20200317, 20200317, '2020-04-06', 'USD', 'RV', 1.0, 21332.26, 20200317.0, 'NAD1', 1930662004.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER associates', 2020.0, 1930753091.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 89297.02, 20200406.0, 'NAA8', 1930753091.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930729561.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 92579.2, 20200402.0, 'NAA8', 1930729561.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104440, 'SO ', 2020.0, 2960620365.0, '2020-03-12', 20200312, 20200312, '2020-03-23', 'CAD', 'RV', 1.0, 56109.65, 20200313.0, 'CA10', 2960620365.0, 1, '2020-03-30', '0-15 days' ); /* INSERT QUERY NO: 954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI us', 2020.0, 1930722856.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 57575.01, 20200331.0, 'NAA8', 1930722856.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930718571.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3356.14, 20200330.0, 'NAH4', 1930718571.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930797235.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 1898.9, 20200417.0, 'NAH4', 1930797235.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930862334.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 48018.29, 20200506.0, 'NAH4', 1930862334.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930661006.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 34237.4, 20200318.0, 'NAH4', 1930661006.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104392, 'FLANAG corporation', 2020.0, 2960620101.0, '2020-03-10', 20200310, 20200310, '2020-03-21', 'CAD', 'RV', 1.0, 4157.8, 20200311.0, 'CA10', 2960620101.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S corporation', 2020.0, 1930769085.0, '2020-04-13', 20200409, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 20688.66, 20200413.0, 'NAA8', 1930769085.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930797460.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 79418.6, 20200419.0, 'NAA8', 1930797460.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F systems', 2020.0, 1930672872.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 17235.8, 20200319.0, 'NAA8', 1930672872.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR systems', 2020.0, 1930592676.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 133010.1, 20200304.0, 'NAA8', 1930592676.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200774000, 'RALEY co', 2020.0, 1930753040.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 89264.96, 20200406.0, 'NAA8', 1930753040.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960625947.0, '2020-04-01', 20200401, 20200401, '2020-04-19', 'CAD', 'RV', 1.0, 143811.44, 20200409.0, 'CA10', 2960625947.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930600178.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 3286.59, 20200304.0, 'NAH4', 1930600178.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930829425.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 41933.26, 20200427.0, 'NAH4', 1930829425.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930622999.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 198.25, 20200308.0, 'NAA8', 1930622999.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200505720, 'EX co', 2020.0, 1930796603.0, '2020-04-10', 20200416, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 8735.6, 20200410.0, 'NAA8', 1930796603.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930619359.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 429.51, 20200308.0, 'NAH4', 1930619359.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC llc', 2020.0, 1930820053.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 19681.66, 20200416.0, 'NAM1', 1930820053.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930566247.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 4950.43, 20200227.0, 'NAH4', 1930566247.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE corporation', 2020.0, 1930770681.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 81694.77, 20200409.0, 'NAA8', 1930770681.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930675770.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 13325.27, 20200321.0, 'NAH4', 1930675770.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930687236.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 117627.68, 20200323.0, 'NAA8', 1930687236.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU systems', 2020.0, 1930670782.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 95945.94, 20200319.0, 'NAA8', 1930670782.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930831741.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 43406.26, 20200428.0, 'NAH4', 1930831741.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930783058.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 30499.96, 20200416.0, 'NAH4', 1930783058.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E corporation', 2020.0, 1930766465.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 28574.3, 20200408.0, 'NAA8', 1930766465.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA in', 2020.0, 1930809736.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 3897.98, 20200421.0, 'NAA8', 1930809736.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER in', 2020.0, 1930584792.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 85290.39, 20200302.0, 'NAA8', 1930584792.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930705125.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 11600.93, 20200327.0, 'NAH4', 1930705125.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930607549.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 6611.63, 20200306.0, 'NAAX', 1930607549.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930838507.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 13251.45, 20200430.0, 'NAH4', 1930838507.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930659023.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 40927.07, 20200317.0, 'NAA8', 1930659023.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930599954.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 14675.89, 20200306.0, 'NAA8', 1930599954.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930583907.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 64662.26, 20200301.0, 'NAH4', 1930583907.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930871215.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 51210.93, 20200506.0, 'NAA8', 1930871215.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930576690.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 3403.8, 20200301.0, 'NAH4', 1930576690.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930705456.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 590.4, 20200327.0, 'NAC6', 1930705456.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE systems', 2020.0, 1930789947.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 853.44, 20200417.0, 'NAA8', 1930789947.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC trust', 2020.0, 1930873344.0, '2020-05-07', 20200507, 20200507, '2020-05-11', 'USD', 'RV', 1.0, 5540.14, 20200501.0, 'NAM2', 1930873344.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930638100.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 6869.26, 20200311.0, 'NAAX', 1930638100.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930819472.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 67663.94, 20200424.0, 'NAA8', 1930819472.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU ', 2020.0, 1930820172.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 85576.22, 20200423.0, 'NAA8', 1930820172.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930709257.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 27825.55, 20200326.0, 'NAH4', 1930709257.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930861188.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 4797.54, 20200507.0, 'NAH4', 1930861188.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930678721.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 72735.67, 20200321.0, 'NAH4', 1930678721.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106231, 'PRATT foundation', 2020.0, 2960632160.0, '2020-05-01', 20200501, 20200501, '2020-05-15', 'CAD', 'RV', 1.0, 4445.14, 20200505.0, 'CA10', 2960632160.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 1000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930772772.0, '2020-04-10', 20200410, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 767.69, 20200410.0, 'NAGD', 1930772772.0, 1, '2020-06-11', 'early' ); /* INSERT QUERY NO: 1001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930861631.0, '2020-05-06', 20200506, 20200506, '2020-05-24', 'USD', 'RV', 1.0, 1304.68, 20200501.0, 'NAM4', 1930861631.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 1002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930735324.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 108314.46, 20200402.0, 'NAC6', 1930735324.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930810971.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 5990.52, 20200425.0, 'NAH4', 1930810971.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930739587.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 2237.43, 20200405.0, 'NAH4', 1930739587.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC trust', 2020.0, 1930670860.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 8929.14, 20200320.0, 'NAA8', 1930670860.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930842172.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 862.12, 20200502.0, 'NAA8', 1930842172.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT us', 2020.0, 1930703265.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 80366.28, 20200325.0, 'NAA8', 1930703265.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER systems', 2020.0, 1930827514.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 66568.66, 20200426.0, 'NAA8', 1930827514.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930800649.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 86703.64, 20200420.0, 'NAH4', 1930800649.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 1010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930847265.0, '2020-05-07', 20200502, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 19348.97, 20200507.0, 'NAH4', 1930847265.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930857874.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 1792.66, 20200506.0, 'NAH4', 1930857874.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930605231.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 13414.95, 20200305.0, 'NAH4', 1930605231.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930687376.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 6871.32, 20200324.0, 'NAH4', 1930687376.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930813294.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 44913.37, 20200422.0, 'NAH4', 1930813294.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930637664.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 9576.77, 20200313.0, 'NAH4', 1930637664.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930729535.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 1590.91, 20200331.0, 'NAH4', 1930729535.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930619960.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 15335.74, 20200309.0, 'NAA8', 1930619960.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR trust', 2020.0, 1930686904.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 61055.33, 20200324.0, 'NAA8', 1930686904.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL associates', 2020.0, 1930689378.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 35947.25, 20200325.0, 'NAA8', 1930689378.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930854540.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 9845.22, 20200504.0, 'NAH4', 1930854540.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200822900, 'TIM H ', 2020.0, 1930576818.0, '2020-03-04', 20200302, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 7835.98, 20200304.0, 'NAD1', 1930576818.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930732048.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 3356.14, 20200402.0, 'NAH4', 1930732048.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930822142.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1025.63, 20200424.0, 'NAH4', 1930822142.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE systems', 2020.0, 1930813691.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 37727.34, 20200422.0, 'NAA8', 1930813691.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 1025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960618512.0, '2020-03-04', 20200304, 20200304, '2020-03-14', 'CAD', 'RV', 1.0, 14231.91, 20200304.0, 'CA10', 2960618512.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 1026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG corp', 2020.0, 1930721196.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 6834.24, 20200331.0, 'NAA8', 1930721196.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100043936, 'PAPA JO in', 2020.0, 1930772400.0, '2020-04-10', 20200409, 20200410, '2020-04-20', 'USD', 'RV', 1.0, 18145.19, 20200410.0, 'NA10', 1930772400.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 1028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC foundation', 2020.0, 2960618599.0, '2020-03-08', 20200308, 20200308, '2020-03-27', 'CAD', 'RV', 1.0, 52285.38, 20200317.0, 'CA10', 2960618599.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 1029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO associates', 2020.0, 1930581474.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 27787.1, 20200228.0, 'NAA8', 1930581474.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW in', 2020.0, 1930774027.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 2771.28, 20200410.0, 'NAA8', 1930774027.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930618928.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 28213.31, 20200307.0, 'NAH4', 1930618928.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719526, 'SHARP S us', 2020.0, 1930788780.0, '2020-04-22', 20200415, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 7997.77, 20200422.0, 'NAA8', 1930788780.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930838016.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 4820.84, 20200430.0, 'NAA8', 1930838016.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930598628.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 50248.28, 20200305.0, 'NAH4', 1930598628.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930774048.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 31858.72, 20200409.0, 'NAC6', 1930774048.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930685971.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 21676.86, 20200322.0, 'NAH4', 1930685971.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA co', 2020.0, 1930809511.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 13937.58, 20200421.0, 'NAA8', 1930809511.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930687567.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 8298.72, 20200325.0, 'NAH4', 1930687567.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930798194.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 10172.24, 20200418.0, 'NAC6', 1930798194.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 1040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930599062.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 661.11, 20200305.0, 'NAH4', 1930599062.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930810792.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 14647.94, 20200423.0, 'NAAX', 1930810792.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER corp', 2020.0, 1930635546.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 41335.31, 20200311.0, 'NAA8', 1930635546.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W foundation', 2020.0, 1930624756.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 131014.5, 20200309.0, 'NAC6', 1930624756.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE in', 2020.0, 1930659585.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 119554.6, 20200317.0, 'NAA8', 1930659585.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 1045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930779677.0, '2020-04-06', 20200413, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 198.38, 20200406.0, 'NAA8', 1930779677.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930756413.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 345.11, 20200407.0, 'NAA8', 1930756413.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC ', 2020.0, 2960621540.0, '2020-03-17', 20200317, 20200317, '2020-04-03', 'CAD', 'RV', 1.0, 1372.8, 20200324.0, 'CA10', 2960621540.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 1048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930744341.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 26989.04, 20200405.0, 'NAH4', 1930744341.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930794029.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 3569.8, 20200417.0, 'NAH4', 1930794029.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930586385.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 569.13, 20200303.0, 'NAA8', 1930586385.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930692382.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 61.29, 20200325.0, 'NAH4', 1930692382.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930683376.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 51253.0, 20200323.0, 'NAH4', 1930683376.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 1053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH foundation', 2020.0, 1930615395.0, '2020-03-10', 20200306, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 54018.36, 20200310.0, 'NAA8', 1930615395.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930776735.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 34320.28, 20200411.0, 'NAH4', 1930776735.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200258814, 'WISE systems', 2020.0, 1930726024.0, '2020-04-03', 20200331, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 75000.2, 20200403.0, 'NAA8', 1930726024.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA systems', 2020.0, 1930669388.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 33.24, 20200316.0, 'NAM4', 1930669388.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930716858.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 19620.22, 20200330.0, 'NAH4', 1930716858.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 1058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930781579.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 6532.6, 20200415.0, 'NAH4', 1930781579.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE corp', 2020.0, 2960620930.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 76498.32, 20200318.0, 'CA10', 2960620930.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 1060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930637723.0, '2020-03-12', 20200311, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 2127.6, 20200312.0, 'NAGD', 1930637723.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930758735.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 20250.05, 20200408.0, 'NAC6', 1930758735.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU associates', 2020.0, 1930760158.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 8969.75, 20200408.0, 'NAA8', 1930760158.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST ', 2020.0, 1930874647.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 40455.53, 20200507.0, 'NAAX', 1930874647.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930720150.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 64.73, 20200331.0, 'NAH4', 1930720150.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930719929.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 66192.54, 20200331.0, 'NAA8', 1930719929.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930687566.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 70218.07, 20200325.0, 'NAH4', 1930687566.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ foundation', 2020.0, 1930646937.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 56569.02, 20200313.0, 'NAA8', 1930646937.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR corp', 2020.0, 2960633408.0, '2020-05-05', 20200505, 20200505, '2020-05-16', 'CAD', 'RV', 1.0, 11281.55, 20200506.0, 'CA10', 2960633408.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 1069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100031686, 'EWT-EU corporation', 2020.0, 1991839535.0, '2020-02-29', 20200225, 20200229, '2020-03-30', 'USD', 'RV', 1.0, 19784.47, 20200229.0, 'NAVE', 1991839535.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 1070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104409, 'LOB trust', 2020.0, 2960625757.0, '2020-03-31', 20200331, 20200331, '2020-04-11', 'CAD', 'RV', 1.0, 10438.08, 20200401.0, 'CA10', 2960625757.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 1071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930738164.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 14426.19, 20200405.0, 'NAH4', 1930738164.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930624263.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 661.11, 20200310.0, 'NAH4', 1930624263.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930738934.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 9101.8, 20200404.0, 'NAH4', 1930738934.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930824657.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 132.72, 20200426.0, 'NAA8', 1930824657.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930716265.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 26526.79, 20200329.0, 'NAH4', 1930716265.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930750025.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 15508.92, 20200405.0, 'NAH4', 1930750025.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200732755, 'KROGER corp', 2020.0, 1930842120.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 24509.21, 20200501.0, 'NAA8', 1930842120.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ foundation', 2020.0, 1930796804.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 9528.08, 20200416.0, 'NAA8', 1930796804.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930599006.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 2713.05, 20200305.0, 'NAH4', 1930599006.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772595, 'SAFEW associates', 2020.0, 1930853078.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 1690.62, 20200503.0, 'NAA8', 1930853078.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 1081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT in', 2020.0, 1930659581.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 17709.62, 20200318.0, 'NAA8', 1930659581.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930831916.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 7083.86, 20200429.0, 'NAC6', 1930831916.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR us', 2020.0, 1930819536.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 6984.69, 20200424.0, 'NAA8', 1930819536.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 1084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC systems', 2020.0, 1930691765.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1257.58, 20200316.0, 'NAM4', 1930691765.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930819193.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 1055.46, 20200423.0, 'NAA8', 1930819193.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 1086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930706500.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 1085.08, 20200328.0, 'NAH4', 1930706500.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930638694.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 48422.27, 20200313.0, 'NAH4', 1930638694.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930822988.0, '2020-04-29', 20200424, 20200429, '2020-07-03', 'USD', 'RV', 1.0, 27417.6, 20200429.0, 'NAGD', 1930822988.0, 1, '2020-06-28', 'early' ); /* INSERT QUERY NO: 1089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corporation', 2020.0, 1930605721.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 26988.87, 20200305.0, 'NAA8', 1930605721.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 1090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO in', 2020.0, 1930623159.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 42647.01, 20200309.0, 'NAA8', 1930623159.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106376, 'ISLAND systems', 2020.0, 2960623287.0, '2020-03-24', 20200324, 20200324, '2020-04-12', 'CAD', 'RV', 1.0, 10448.21, 20200402.0, 'CA10', 2960623287.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 1092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930632770.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 41532.84, 20200310.0, 'NAH4', 1930632770.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930661626.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 110640.53, 20200317.0, 'NAA8', 1930661626.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930752699.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 31616.28, 20200407.0, 'NAH4', 1930752699.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960630062.0, '2020-04-22', 20200422, 20200422, '2020-05-11', 'CAD', 'RV', 1.0, 49997.22, 20200501.0, 'CA10', 2960630062.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 1096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA foundation', 2020.0, 1930716951.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 58302.1, 20200330.0, 'NAA8', 1930716951.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG systems', 2020.0, 1930857074.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 10948.1, 20200506.0, 'NAA8', 1930857074.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW in', 2020.0, 1930725904.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 39738.55, 20200331.0, 'NAA8', 1930725904.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930628161.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 1201.27, 20200311.0, 'NAA8', 1930628161.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200755701, 'ASSOCI systems', 2020.0, 1930638172.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 20438.74, 20200313.0, 'NAA8', 1930638172.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930630706.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 7160.94, 20200311.0, 'NAH4', 1930630706.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930701288.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 61892.17, 20200325.0, 'NAAX', 1930701288.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930851094.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 93403.36, 20200503.0, 'NAC6', 1930851094.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 1104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930624812.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 2971.27, 20200310.0, 'NAAX', 1930624812.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930802952.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 7068.28, 20200420.0, 'NAH4', 1930802952.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 1106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030443, 'GLACIE associates', 2020.0, 1930810301.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 1252.48, 20200421.0, 'NAA8', 1930810301.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200076137, 'OLLIE systems', 2020.0, 1930842090.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 2794.0, 20200506.0, 'NAA8', 1930842090.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104234, 'DEALER associates', 2020.0, 2960627392.0, '2020-04-13', 20200413, 20200413, '2020-04-26', 'CAD', 'RV', 1.0, 2804.5, 20200416.0, 'CA10', 2960627392.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 1109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR ', 2020.0, 2960629857.0, '2020-04-21', 20200421, 20200421, '2020-05-02', 'CAD', 'RV', 1.0, 11675.45, 20200422.0, 'CA10', 2960629857.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 1110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960617623.0, '2020-02-28', 20200228, 20200228, '2020-03-12', 'CAD', 'RV', 1.0, 63162.98, 20200302.0, 'CA10', 2960617623.0, 1, '2020-03-13', '0-15 days' ); /* INSERT QUERY NO: 1111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA trust', 2020.0, 1930700292.0, '2020-03-26', 20200326, 20200326, '2020-04-08', 'USD', 'RV', 1.0, 526.76, 20200316.0, 'NAM4', 1930700292.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN co', 2020.0, 1930655364.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 17028.0, 20200317.0, 'NAA8', 1930655364.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930600080.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 84649.31, 20200305.0, 'NAU5', 1930600080.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140101904, 'SIGMA AL in', 2020.0, 1991841225.0, '2020-03-17', 20200316, 20200317, '2020-04-16', 'USD', 'RV', 1.0, 88390.8, 20200317.0, 'NAVE', 1991841225.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 1115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930759424.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1933.34, 20200409.0, 'NAA8', 1930759424.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100058056, 'SIMPLO associates', 2020.0, 1930881133.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 257936.4, 20200508.0, 'NAA8', 1930881133.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 1117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930797357.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 15355.34, 20200418.0, 'NAA8', 1930797357.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M foundation', 2020.0, 1930669986.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 39459.7, 20200319.0, 'NAA8', 1930669986.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930685399.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 414.12, 20200323.0, 'NAA8', 1930685399.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930727443.0, '2020-03-31', 20200401, 20200331, '2020-04-20', 'USD', 'RV', 1.0, 35795.32, 20200331.0, 'NAD1', 1930727443.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 1121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC trust', 2020.0, 1930812817.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 4092.1, 20200416.0, 'NAM4', 1930812817.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 1122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930730885.0, '2020-04-03', 20200402, 20200403, '2020-06-07', 'USD', 'RV', 1.0, 1437.62, 20200403.0, 'NAGD', 1930730885.0, 1, '2020-06-05', 'early' ); /* INSERT QUERY NO: 1123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930637539.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 9077.46, 20200311.0, 'NAA8', 1930637539.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ us', 2020.0, 1930732435.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 20091.8, 20200401.0, 'NAA8', 1930732435.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930605060.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 38173.44, 20200305.0, 'NAH4', 1930605060.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER systems', 2020.0, 1930788841.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 64681.3, 20200415.0, 'NAA8', 1930788841.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930711216.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 43756.51, 20200327.0, 'NAH4', 1930711216.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930604622.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 6759.1, 20200306.0, 'NAA8', 1930604622.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930624629.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 5021.84, 20200311.0, 'NAH4', 1930624629.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930814436.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 42905.58, 20200423.0, 'NAA8', 1930814436.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA in', 2020.0, 1930746915.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 69412.52, 20200403.0, 'NAA8', 1930746915.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930813038.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 13550.61, 20200423.0, 'NAA8', 1930813038.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930857281.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 20245.86, 20200505.0, 'NAH4', 1930857281.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930708570.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 32511.64, 20200328.0, 'NAU5', 1930708570.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930723393.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 4468.55, 20200330.0, 'NAA8', 1930723393.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930687449.0, '2020-03-24', 20200323, 20200324, '2020-05-28', 'USD', 'RV', 1.0, 1815.46, 20200324.0, 'NAGD', 1930687449.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 1137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100053298, 'GLOBA foundation', 2020.0, 1930647610.0, '2020-03-12', 20200313, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 9180.0, 20200312.0, 'NAA8', 1930647610.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930687989.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 20153.68, 20200323.0, 'NAA8', 1930687989.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930834476.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 30067.97, 20200429.0, 'NAH4', 1930834476.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930817511.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 194.22, 20200423.0, 'NAA8', 1930817511.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 1141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104440, 'SO systems', 2020.0, 2960620423.0, '2020-03-12', 20200312, 20200312, '2020-03-23', 'CAD', 'RV', 1.0, 38182.07, 20200313.0, 'CA10', 2960620423.0, 1, '2020-03-30', '0-15 days' ); /* INSERT QUERY NO: 1142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930847584.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 74442.31, 20200502.0, 'NAH4', 1930847584.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 1143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT associates', 2020.0, 1930609731.0, '2020-03-08', 20200306, 20200308, '2020-04-12', 'USD', 'RV', 1.0, 26389.5, 20200308.0, 'NAG2', 1930609731.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 1144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930784068.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 30707.5, 20200415.0, 'NAH4', 1930784068.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F corporation', 2020.0, 1930772146.0, '2020-04-09', 20200409, 20200409, '2020-04-29', 'USD', 'RV', 1.0, 13576.02, 20200409.0, 'NAD1', 1930772146.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 1146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930778846.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 30.64, 20200412.0, 'NAH4', 1930778846.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA corp', 2020.0, 1930573847.0, '2020-02-28', 20200226, 20200228, '2020-04-13', 'USD', 'RV', 1.0, 100106.36, 20200228.0, 'NAWP', 1930573847.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 1148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE associates', 2020.0, 1930812552.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 79255.86, 20200422.0, 'NAA8', 1930812552.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 1149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corp', 2020.0, 1930817766.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 8417.92, 20200416.0, 'NAM4', 1930817766.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC ', 2020.0, 1930723993.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 16871.48, 20200401.0, 'NAA8', 1930723993.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930791270.0, '2020-04-17', 20200415, 20200417, '2020-06-21', 'USD', 'RV', 1.0, 20940.6, 20200417.0, 'NAGD', 1930791270.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 1152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930636499.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 14154.17, 20200312.0, 'NAA8', 1930636499.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930665871.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 732.47, 20200319.0, 'NAC6', 1930665871.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930689304.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 7854.22, 20200323.0, 'NAH4', 1930689304.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930713844.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 67390.55, 20200328.0, 'NAH4', 1930713844.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930796283.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 24137.83, 20200418.0, 'NAH4', 1930796283.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO co', 2020.0, 2960625934.0, '2020-04-01', 20200401, 20200401, '2020-04-15', 'CAD', 'RV', 1.0, 24290.69, 20200405.0, 'CA10', 2960625934.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 1158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC co', 2020.0, 1930788848.0, '2020-04-15', 20200415, 20200415, '2020-04-24', 'USD', 'RV', 1.0, 4253.71, 20200401.0, 'NAM4', 1930788848.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW co', 2020.0, 1930801272.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 52025.85, 20200421.0, 'NAA8', 1930801272.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930792991.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 9407.8, 20200416.0, 'NAA8', 1930792991.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 1161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930587777.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 130.62, 20200303.0, 'NAA8', 1930587777.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK llc', 2020.0, 1930687007.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 64295.62, 20200323.0, 'NAA8', 1930687007.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE us', 2020.0, 1930849927.0, '2020-04-30', 20200502, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 39073.69, 20200430.0, 'NAA8', 1930849927.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930773732.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 127229.05, 20200411.0, 'NAA8', 1930773732.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930801104.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 95475.17, 20200418.0, 'NAC6', 1930801104.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 1166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930671268.0, '2020-03-20', 20200319, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 529.54, 20200320.0, 'NAGD', 1930671268.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930752253.0, '2020-04-03', 20200406, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 341.28, 20200403.0, 'NAA8', 1930752253.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S systems', 2020.0, 1930664517.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 132.72, 20200317.0, 'NAA8', 1930664517.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 1169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930642387.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 15310.82, 20200313.0, 'NAH4', 1930642387.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA llc', 2020.0, 1930605958.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 18896.4, 20200306.0, 'NAA8', 1930605958.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS co', 2020.0, 1930626242.0, '2020-03-11', 20200309, 20200311, '2020-04-15', 'USD', 'RV', 1.0, 35283.6, 20200311.0, 'NAG2', 1930626242.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 1172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930688274.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 2157.87, 20200324.0, 'NAA8', 1930688274.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ foundation', 2020.0, 1930685548.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 31484.74, 20200323.0, 'NAA8', 1930685548.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT associates', 2020.0, 1930595756.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 72816.49, 20200305.0, 'NAA8', 1930595756.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU corporation', 2020.0, 1930673866.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 90858.5, 20200320.0, 'NAA8', 1930673866.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200886415, 'COSTCO corporation', 2020.0, 1930769672.0, '2020-04-14', 20200409, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 2987.1, 20200414.0, 'NAA8', 1930769672.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 1177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104429, 'COSTCO us', 2020.0, 2960622588.0, '2020-03-23', 20200323, 20200323, '2020-04-05', 'CAD', 'RV', 1.0, 59022.05, 20200326.0, 'CA10', 2960622588.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 1178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930730960.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 26912.75, 20200403.0, 'NAH4', 1930730960.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930732651.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 2352.97, 20200403.0, 'NAH4', 1930732651.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100014724, 'DEC associates', 2020.0, 1930754543.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'USD', 'RV', 1.0, 42648.8, 20200401.0, 'NAM4', 1930754543.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930583159.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 111465.19, 20200302.0, 'NAA8', 1930583159.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930585588.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 15757.43, 20200301.0, 'NAA8', 1930585588.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S corp', 2020.0, 1930851773.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 106748.02, 20200503.0, 'NAA8', 1930851773.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN us', 2020.0, 1930794942.0, '2020-04-16', 20200416, 20200416, '2020-06-20', 'USD', 'RV', 1.0, 26559.01, 20200416.0, 'NAGD', 1930794942.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 1185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930779572.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 339.47, 20200413.0, 'NAA8', 1930779572.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 1186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER foundation', 2020.0, 1930754654.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 31974.05, 20200407.0, 'NAA8', 1930754654.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930683184.0, '2020-03-23', 20200321, 20200323, '2020-05-07', 'USD', 'RV', 1.0, 89507.34, 20200323.0, 'NAWP', 1930683184.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 1188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE foundation', 2020.0, 1930630915.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 23788.2, 20200312.0, 'NAA8', 1930630915.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930854165.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 27562.99, 20200504.0, 'NAH4', 1930854165.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930833786.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 21235.19, 20200429.0, 'NAH4', 1930833786.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930858957.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 661.11, 20200507.0, 'NAH4', 1930858957.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200742791, 'QUI systems', 2020.0, 1930855572.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 22845.73, 20200507.0, 'NAA8', 1930855572.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930696148.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 77024.65, 20200326.0, 'NAC6', 1930696148.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S ', 2020.0, 1930664827.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 66.37, 20200318.0, 'NAA8', 1930664827.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930716620.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 661.11, 20200329.0, 'NAH4', 1930716620.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930851722.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 32230.43, 20200502.0, 'NAH4', 1930851722.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930580498.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 7466.9, 20200229.0, 'NAH4', 1930580498.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR trust', 2020.0, 1930637149.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 70898.59, 20200312.0, 'NAA8', 1930637149.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930722805.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 20355.41, 20200331.0, 'NAH4', 1930722805.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930571204.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 14645.37, 20200227.0, 'NAH4', 1930571204.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 1201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'KRAFT foundation', 2020.0, 1991839747.0, '2020-02-29', 20200227, 20200229, '2020-04-14', 'USD', 'RV', 1.0, 48896.46, 20200229.0, 'NAVF', 1991839747.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 1202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930675367.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 70341.24, 20200322.0, 'NAH4', 1930675367.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE foundation', 2020.0, 1930813437.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 2147.7, 20200424.0, 'NAA8', 1930813437.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200359490, 'DUTCH systems', 2020.0, 1930862347.0, '2020-05-05', 20200506, 20200505, '2020-05-15', 'USD', 'RV', 1.0, 16392.96, 20200505.0, 'NA10', 1930862347.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200934569, 'SODEXHO systems', 2020.0, 1930596042.0, '2020-03-06', 20200303, 20200306, '2020-04-10', 'USD', 'RV', 1.0, 931.32, 20200306.0, 'NAG2', 1930596042.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930675358.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 408.53, 20200320.0, 'NAH4', 1930675358.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO in', 2020.0, 1930592279.0, '2020-03-05', 20200302, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 2399.11, 20200305.0, 'NAA8', 1930592279.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930583232.0, '2020-02-28', 20200229, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 75817.72, 20200228.0, 'NAA8', 1930583232.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930799426.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 122.57, 20200419.0, 'NAH4', 1930799426.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930731848.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 4705.93, 20200401.0, 'NAH4', 1930731848.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 1211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930594005.0, '2020-03-02', 20200303, 20200302, '2020-04-05', 'USD', 'RV', 1.0, 8828.37, 20200302.0, 'NAAW', 1930594005.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corp', 2020.0, 1930877640.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 4670.46, 20200501.0, 'NAM4', 1930877640.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B in', 2020.0, 1930822726.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 19919.09, 20200424.0, 'NAA8', 1930822726.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930603208.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 36923.43, 20200304.0, 'NAA8', 1930603208.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL llc', 2020.0, 1930594419.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 108.3, 20200303.0, 'NAX2', 1930594419.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 1216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930674745.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 42466.44, 20200316.0, 'NAM2', 1930674745.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930732878.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 14840.25, 20200403.0, 'NAH4', 1930732878.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG trust', 2020.0, 1930757383.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 11405.84, 20200407.0, 'NAA8', 1930757383.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC llc', 2020.0, 1930758235.0, '2020-04-13', 20200407, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 14975.36, 20200413.0, 'NAA8', 1930758235.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930580728.0, '2020-02-27', 20200228, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 5453.43, 20200227.0, 'NAA8', 1930580728.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100046487, 'PAPA JOH associates', 2020.0, 1991841258.0, '2020-03-26', 20200326, 20200326, '2020-04-20', 'USD', 'RV', 1.0, 16008.2, 20200326.0, 'NA25', 1991841258.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930718946.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 6744.44, 20200330.0, 'NAH4', 1930718946.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT trust', 2020.0, 1930847883.0, '2020-05-01', 20200501, 20200501, '2020-05-21', 'USD', 'RV', 1.0, 27361.53, 20200501.0, 'NAD1', 1930847883.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO foundation', 2020.0, 2960626361.0, '2020-04-05', 20200406, 20200405, '2020-04-22', 'CAD', 'RV', 1.0, 47041.27, 20200412.0, 'CA10', 2960626361.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 1225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930756895.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 129096.64, 20200408.0, 'NAC6', 1930756895.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742791, 'QUI systems', 2020.0, 1930843037.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 4999.53, 20200506.0, 'NAA8', 1930843037.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930757880.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 25234.98, 20200408.0, 'NAA8', 1930757880.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140101772, 'CHIHAD corp', 2020.0, 1991842121.0, '2020-04-13', 20200409, 20200413, '2020-05-13', 'USD', 'RV', 1.0, 3107.68, 20200413.0, 'NAVE', 1991842121.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 1229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE associates', 2020.0, 1930758025.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 99951.37, 20200408.0, 'NAA8', 1930758025.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930684120.0, '2020-03-24', 20200321, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 15534.98, 20200324.0, 'NAH4', 1930684120.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930802865.0, '2020-04-20', 20200420, 20200420, '2020-06-24', 'USD', 'RV', 1.0, 728.78, 20200420.0, 'NAGD', 1930802865.0, 1, '2020-06-18', 'early' ); /* INSERT QUERY NO: 1232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- foundation', 2020.0, 2960619269.0, '2020-03-10', 20200310, 20200310, '2020-03-29', 'CAD', 'RV', 1.0, 5887.8, 20200319.0, 'CA10', 2960619269.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 1233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE trust', 2020.0, 1930800889.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 164427.65, 20200420.0, 'NAA8', 1930800889.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO corporation', 2020.0, 1930641397.0, '2020-03-11', 20200311, 20200311, '2020-03-31', 'USD', 'RV', 1.0, 70874.08, 20200311.0, 'NAD1', 1930641397.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930605831.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 1157.84, 20200307.0, 'NAH4', 1930605831.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER llc', 2020.0, 1930628722.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 14002.34, 20200312.0, 'NAA8', 1930628722.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930715810.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 117741.34, 20200329.0, 'NAC6', 1930715810.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930726510.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 3228.13, 20200401.0, 'NAH4', 1930726510.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 1239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930621797.0, '2020-03-10', 20200309, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 25833.78, 20200310.0, 'NAGD', 1930621797.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930759716.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 58806.34, 20200407.0, 'NAA8', 1930759716.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930674683.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 471.56, 20200320.0, 'NAH4', 1930674683.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930691591.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1506.84, 20200324.0, 'NAA8', 1930691591.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930602909.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 1898.9, 20200305.0, 'NAH4', 1930602909.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930751728.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 14076.87, 20200407.0, 'NAAX', 1930751728.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930603615.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 8776.74, 20200305.0, 'NAAX', 1930603615.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corp', 2020.0, 1930570155.0, '2020-02-27', 20200226, 20200227, '2020-03-18', 'USD', 'RV', 1.0, 2502.87, 20200227.0, 'NAD1', 1930570155.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930713982.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 16968.0, 20200331.0, 'NAA8', 1930713982.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930803017.0, '2020-04-23', 20200420, 20200423, '2020-06-27', 'USD', 'RV', 1.0, 1008.0, 20200423.0, 'NAGD', 1930803017.0, 1, '2020-06-22', 'early' ); /* INSERT QUERY NO: 1249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930857481.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 6755.05, 20200505.0, 'NAH4', 1930857481.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930620122.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 4055.84, 20200307.0, 'NAH4', 1930620122.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764515, 'KIN in', 2020.0, 1930686134.0, '2020-03-25', 20200322, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 49072.94, 20200325.0, 'NAA8', 1930686134.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930628651.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 31508.58, 20200312.0, 'NAH4', 1930628651.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 1253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200386051, 'W H us', 2020.0, 1930659398.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 23757.31, 20200319.0, 'NAA8', 1930659398.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 1254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200708411, 'SHAM co', 2020.0, 1930899217.0, '2020-05-14', 20200514, 20200514, '2020-05-29', 'USD', 'RV', 1.0, 19085.34, 20200514.0, 'NAA8', 1930899217.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 1255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960630418.0, '2020-04-22', 20200422, 20200422, '2020-05-02', 'CAD', 'RV', 1.0, 6943.2, 20200422.0, 'CA10', 2960630418.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 1256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930839594.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 140424.42, 20200502.0, 'NAA8', 1930839594.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105072, 'RAJ foundation', 2020.0, 2960621503.0, '2020-03-15', 20200315, 20200315, '2020-03-26', 'CAD', 'RV', 1.0, 34479.86, 20200316.0, 'CA10', 2960621503.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 1258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930672846.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 42449.95, 20200321.0, 'NAH4', 1930672846.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930662121.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 80618.44, 20200317.0, 'NAA8', 1930662121.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA in', 2020.0, 1930762073.0, '2020-04-08', 20200408, 20200408, '2020-04-24', 'USD', 'RV', 1.0, 200.88, 20200401.0, 'NAM4', 1930762073.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA foundation', 2020.0, 1930608476.0, '2020-03-05', 20200305, 20200305, '2020-03-25', 'USD', 'RV', 1.0, 984.16, 20200305.0, 'NAD1', 1930608476.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930662778.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 6673.84, 20200318.0, 'NAH4', 1930662778.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930740879.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 47588.82, 20200404.0, 'NAH4', 1930740879.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO in', 2020.0, 1930597551.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 24343.38, 20200306.0, 'NAA8', 1930597551.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930741133.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 11622.99, 20200404.0, 'NAA8', 1930741133.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 1266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930826776.0, '2020-04-28', 20200425, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 679.15, 20200428.0, 'NAH4', 1930826776.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA foundation', 2020.0, 1930744780.0, '2020-04-04', 20200404, 20200404, '2020-04-08', 'USD', 'RV', 1.0, 15.4, 20200401.0, 'NAM1', 1930744780.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930772945.0, '2020-04-11', 20200410, 20200411, '2020-06-15', 'USD', 'RV', 1.0, 838.16, 20200411.0, 'NAGD', 1930772945.0, 1, '2020-06-12', 'early' ); /* INSERT QUERY NO: 1269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200230690, 'DECA in', 2020.0, 1930670160.0, '2020-03-19', 20200319, 20200319, '2020-04-08', 'USD', 'RV', 1.0, 363.52, 20200316.0, 'NAM4', 1930670160.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930780437.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 145384.03, 20200414.0, 'NAC6', 1930780437.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930703474.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 5167.94, 20200326.0, 'NAAX', 1930703474.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930797971.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 53338.89, 20200418.0, 'NAH4', 1930797971.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930671409.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 70305.13, 20200319.0, 'NAH4', 1930671409.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930861982.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 4402.62, 20200506.0, 'NAH4', 1930861982.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 1275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930861866.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 4506.58, 20200507.0, 'NAH4', 1930861866.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960631666.0, '2020-04-30', 20200430, 20200430, '2020-05-11', 'CAD', 'RV', 1.0, 4856.95, 20200501.0, 'CA10', 2960631666.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 1277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930685000.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 433.51, 20200322.0, 'NAH4', 1930685000.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK in', 2020.0, 1930816141.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 78550.91, 20200422.0, 'NAA8', 1930816141.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782772, 'ASSOC G trust', 2020.0, 1930755090.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 33060.55, 20200406.0, 'NAA8', 1930755090.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103409, 'BUTTE associates', 2020.0, 1991841836.0, '2020-03-30', 20200326, 20200330, '2020-04-29', 'USD', 'RV', 1.0, 779.92, 20200330.0, 'NAVE', 1991841836.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 1281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100027744, 'OMEGA AD co', 2020.0, 2960624083.0, '2020-03-30', 20200330, 20200330, '2020-03-30', 'CAD', 'RV', 1.0, 350.4, 20200330.0, 'CAB1', 2960624083.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 1282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER llc', 2020.0, 1930576541.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 14780.25, 20200227.0, 'NAA8', 1930576541.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960619123.0, '2020-03-06', 20200306, 20200306, '2020-03-24', 'CAD', 'RV', 1.0, 79873.47, 20200314.0, 'CA10', 2960619123.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 1284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930705391.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 36197.43, 20200327.0, 'NAAX', 1930705391.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M corp', 2020.0, 1930681129.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 50325.87, 20200320.0, 'NAA8', 1930681129.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0140142846, 'MONDE associates', 2020.0, 1930650617.0, '2020-03-18', 20200313, 20200318, '2020-05-17', 'USD', 'RV', 1.0, 8157.01, 20200318.0, 'NACB', 1930650617.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC associates', 2020.0, 1930653512.0, '2020-03-19', 20200314, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 19081.58, 20200319.0, 'NAA8', 1930653512.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO ', 2020.0, 2960632070.0, '2020-05-06', 20200506, 20200506, '2020-05-17', 'CAD', 'RV', 1.0, 235520.44, 20200507.0, 'CA10', 2960632070.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 1289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER co', 2020.0, 1930597904.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 77541.86, 20200304.0, 'NAA8', 1930597904.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 1290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930822619.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 8813.75, 20200425.0, 'NAH4', 1930822619.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930885081.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 34870.11, 20200512.0, 'NAH4', 1930885081.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 1292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE systems', 2020.0, 1930660311.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 53391.51, 20200317.0, 'NAA8', 1930660311.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930609410.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 5027.65, 20200306.0, 'NAH4', 1930609410.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930628542.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 490.0, 20200310.0, 'NAA8', 1930628542.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ foundation', 2020.0, 1930671474.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 110574.78, 20200320.0, 'NAA8', 1930671474.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930731490.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 11779.24, 20200403.0, 'NAH4', 1930731490.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200773364, 'U R M systems', 2020.0, 1930837609.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 1931.21, 20200430.0, 'NAA8', 1930837609.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M in', 2020.0, 2960622053.0, '2020-03-21', 20200321, 20200321, '2020-04-01', 'CAD', 'RV', 1.0, 65780.88, 20200322.0, 'CA10', 2960622053.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 1299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M systems', 2020.0, 2960630284.0, '2020-04-24', 20200424, 20200424, '2020-05-05', 'CAD', 'RV', 1.0, 9418.49, 20200425.0, 'CA10', 2960630284.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 1300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930620051.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 4833.42, 20200307.0, 'NAU5', 1930620051.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930802777.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 14772.55, 20200422.0, 'NAAX', 1930802777.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 1302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER foundation', 2020.0, 1930658137.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 142166.64, 20200316.0, 'NAA8', 1930658137.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 1303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930788342.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 10888.18, 20200415.0, 'NAH4', 1930788342.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE associates', 2020.0, 1930669431.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 8338.89, 20200319.0, 'NAA8', 1930669431.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930788908.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 12104.75, 20200415.0, 'NAA8', 1930788908.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 1306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH us', 2020.0, 1930624679.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 107211.88, 20200309.0, 'NAA8', 1930624679.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930830555.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 14244.24, 20200427.0, 'NAU5', 1930830555.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA trust', 2020.0, 1930576499.0, '2020-02-27', 20200227, 20200227, '2020-04-12', 'USD', 'RV', 1.0, 123875.31, 20200227.0, 'NAWP', 1930576499.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 1309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT us', 2020.0, 1930876572.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 60550.95, 20200507.0, 'NAU5', 1930876572.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 1310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930828959.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 554.96, 20200426.0, 'NAA8', 1930828959.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104277, 'WALLA associates', 2020.0, 2960628817.0, '2020-04-13', 20200414, 20200413, '2020-05-02', 'CAD', 'RV', 1.0, 16583.42, 20200422.0, 'CA10', 2960628817.0, 1, '2020-05-09', '0-15 days' ); /* INSERT QUERY NO: 1312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930739230.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 760.78, 20200404.0, 'NAH4', 1930739230.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR ', 2020.0, 1930576916.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 7259.45, 20200228.0, 'NAA8', 1930576916.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930624692.0, '2020-03-09', 20200310, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 74286.35, 20200309.0, 'NAA8', 1930624692.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200622385, 'US trust', 2020.0, 1930822021.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 16635.05, 20200423.0, 'NAA8', 1930822021.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930584350.0, '2020-03-03', 20200229, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 12450.19, 20200303.0, 'NAH4', 1930584350.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930740850.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 19730.06, 20200404.0, 'NAA8', 1930740850.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE systems', 2020.0, 1930638605.0, '2020-03-12', 20200311, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 22958.76, 20200312.0, 'NAGD', 1930638605.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 1319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER co', 2020.0, 1930673899.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 18298.09, 20200321.0, 'NAA8', 1930673899.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930583622.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 12225.47, 20200301.0, 'NAH4', 1930583622.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930583908.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 14808.55, 20200301.0, 'NAH4', 1930583908.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER in', 2020.0, 2960626356.0, '2020-04-05', 20200406, 20200405, '2020-04-23', 'CAD', 'RV', 1.0, 150970.75, 20200413.0, 'CA10', 2960626356.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 1323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER co', 2020.0, 1930756876.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 34431.75, 20200408.0, 'NAA8', 1930756876.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930709518.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 6699.47, 20200329.0, 'NAH4', 1930709518.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930832781.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 54742.96, 20200428.0, 'NAH4', 1930832781.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC in', 2020.0, 1930759208.0, '2020-04-01', 20200407, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 41886.48, 20200401.0, 'NAA8', 1930759208.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 1327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930783464.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 284.94, 20200416.0, 'NAA8', 1930783464.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 1328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930666414.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 100853.61, 20200319.0, 'NAA8', 1930666414.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930577073.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 10673.6, 20200304.0, 'NAA8', 1930577073.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930718967.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 10659.9, 20200330.0, 'NAH4', 1930718967.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corporation', 2020.0, 2960627111.0, '2020-04-05', 20200405, 20200405, '2020-04-15', 'CAD', 'RV', 1.0, 35436.92, 20200405.0, 'CA10', 2960627111.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 1332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707005, 'KING S foundation', 2020.0, 1930684493.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 108715.11, 20200323.0, 'NAA8', 1930684493.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ ', 2020.0, 1930627630.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 100771.83, 20200309.0, 'NAA8', 1930627630.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930692069.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 27434.02, 20200324.0, 'NAH4', 1930692069.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930806272.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 30462.97, 20200420.0, 'NAH4', 1930806272.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930738782.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 15454.34, 20200403.0, 'NAH4', 1930738782.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC systems', 2020.0, 1930685596.0, '2020-03-24', 20200324, 20200324, '2020-03-26', 'USD', 'RV', 1.0, 3385.0, 20200316.0, 'NAM2', 1930685596.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930607217.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 8793.09, 20200306.0, 'NAAX', 1930607217.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930850075.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 32835.19, 20200505.0, 'NAH4', 1930850075.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104249, 'SOB ', 2020.0, 2960629154.0, '2020-04-21', 20200421, 20200421, '2020-05-08', 'CAD', 'RV', 1.0, 4295.48, 20200428.0, 'CA10', 2960629154.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 1341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200571849, 'US llc', 2020.0, 1930815779.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 17103.3, 20200422.0, 'NAA8', 1930815779.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corp', 2020.0, 1930751073.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 32323.87, 20200405.0, 'NAA8', 1930751073.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 1343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555693, 'F & foundation', 2020.0, 1930637713.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 58151.83, 20200311.0, 'NAA8', 1930637713.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930600079.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 18169.3, 20200304.0, 'NAU5', 1930600079.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 1345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930576654.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 11828.69, 20200229.0, 'NAA8', 1930576654.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 1346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930624631.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 12668.17, 20200309.0, 'NAH4', 1930624631.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW trust', 2020.0, 1930700040.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 4964.75, 20200325.0, 'NAA8', 1930700040.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930860712.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 36962.42, 20200506.0, 'NAH4', 1930860712.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930637078.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 34456.05, 20200312.0, 'NAH4', 1930637078.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 1350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770677, 'KRAS associates', 2020.0, 1930674449.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 6071.86, 20200321.0, 'NAA8', 1930674449.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930585472.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 48084.63, 20200303.0, 'NAH4', 1930585472.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930730964.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 126.92, 20200402.0, 'NAA8', 1930730964.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930855317.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 25599.42, 20200503.0, 'NAH4', 1930855317.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200783609, 'PROFIC corporation', 2020.0, 1930603122.0, '2020-03-10', 20200304, 20200310, '2020-04-11', 'USD', 'RV', 1.0, 11501.0, 20200310.0, 'NA32', 1930603122.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930764134.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 8567.31, 20200409.0, 'NAA8', 1930764134.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930808607.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 10727.84, 20200421.0, 'NAH4', 1930808607.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO systems', 2020.0, 2960625834.0, '2020-04-02', 20200402, 20200402, '2020-04-20', 'CAD', 'RV', 1.0, 46630.08, 20200410.0, 'CA10', 2960625834.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 1358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930749495.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 40033.71, 20200405.0, 'NAA8', 1930749495.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 1359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- systems', 2020.0, 2960628228.0, '2020-04-14', 20200414, 20200414, '2020-05-03', 'CAD', 'RV', 1.0, 62532.0, 20200423.0, 'CA10', 2960628228.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 1360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930830009.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 51479.81, 20200428.0, 'NAH4', 1930830009.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930768632.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 51945.31, 20200408.0, 'NAH4', 1930768632.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 1362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M in', 2020.0, 2960623568.0, '2020-03-26', 20200326, 20200326, '2020-04-05', 'CAD', 'RV', 1.0, 885.47, 20200326.0, 'CA10', 2960623568.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 1363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC us', 2020.0, 1930837855.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 16517.15, 20200428.0, 'NAA8', 1930837855.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930621980.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 28155.64, 20200310.0, 'NAH4', 1930621980.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707005, 'KING S systems', 2020.0, 1930839533.0, '2020-05-02', 20200429, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 27446.07, 20200502.0, 'NAA8', 1930839533.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 1366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930584110.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 69313.8, 20200229.0, 'NAH4', 1930584110.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA foundation', 2020.0, 1930693465.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 28702.52, 20200326.0, 'NAH4', 1930693465.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 1368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701040, 'SOUTHE us', 2020.0, 1930570381.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 14811.96, 20200302.0, 'NAA8', 1930570381.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO trust', 2020.0, 2960634442.0, '2020-05-12', 20200512, 20200512, '2020-05-23', 'CAD', 'RV', 1.0, 5799.27, 20200513.0, 'CA10', 2960634442.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 1370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG llc', 2020.0, 1930838386.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 35029.54, 20200429.0, 'NAA8', 1930838386.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930759058.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 82310.24, 20200407.0, 'NAA8', 1930759058.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930699327.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 32028.34, 20200325.0, 'NAH4', 1930699327.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930586028.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 7656.57, 20200302.0, 'NAA8', 1930586028.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M systems', 2020.0, 2960618297.0, '2020-03-03', 20200303, 20200303, '2020-03-21', 'CAD', 'RV', 1.0, 13420.03, 20200311.0, 'CA10', 2960618297.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 1375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930692456.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 16831.42, 20200325.0, 'NAA8', 1930692456.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corporation', 2020.0, 1930759028.0, '2020-04-11', 20200407, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 15618.15, 20200411.0, 'NAA8', 1930759028.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 1377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930782745.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 134295.08, 20200415.0, 'NAH4', 1930782745.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR foundation', 2020.0, 1930759188.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 3796.4, 20200409.0, 'NAH4', 1930759188.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 1379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104240, 'FEDER ', 2020.0, 2960627350.0, '2020-04-09', 20200409, 20200409, '2020-04-19', 'CAD', 'RV', 1.0, 654.05, 20200409.0, 'CA10', 2960627350.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 1380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200702238, 'HAROLD us', 2020.0, 1930758078.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 88676.5, 20200407.0, 'NAA8', 1930758078.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH associates', 2020.0, 1930646426.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 39588.19, 20200313.0, 'NAA8', 1930646426.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930713272.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 5593.87, 20200327.0, 'NAH4', 1930713272.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930877224.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 27496.82, 20200508.0, 'NAH4', 1930877224.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 1384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER trust', 2020.0, 2960625196.0, '2020-04-05', 20200405, 20200405, '2020-04-23', 'CAD', 'RV', 1.0, 82309.63, 20200413.0, 'CA10', 2960625196.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 1385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960618949.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'CAD', 'RV', 1.0, 106904.12, 20200312.0, 'CA10', 2960618949.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 1386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930738720.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 4658.22, 20200402.0, 'NAAX', 1930738720.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 1387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0140142846, 'MONDE associates', 2020.0, 1930658191.0, '2020-03-19', 20200316, 20200319, '2020-05-18', 'USD', 'RV', 1.0, 610.08, 20200319.0, 'NACB', 1930658191.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC ', 2020.0, 1930817556.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 7054.83, 20200416.0, 'NAM1', 1930817556.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corp', 2020.0, 1930601071.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 32520.69, 20200305.0, 'NAA8', 1930601071.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 1390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741831, 'SUPE associates', 2020.0, 1930817264.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 14039.47, 20200422.0, 'NAA8', 1930817264.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930582576.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 14155.92, 20200229.0, 'NAH4', 1930582576.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930879304.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 6540.07, 20200508.0, 'NAH4', 1930879304.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 1393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930715598.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 1898.2, 20200330.0, 'NAH4', 1930715598.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200286074, 'LAND associates', 2020.0, 1930764281.0, '2020-04-08', 20200408, 20200408, '2020-05-08', 'USD', 'RV', 1.0, 2602.25, 20200408.0, 'BR12', 1930764281.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 1395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930777938.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 52003.22, 20200412.0, 'NAH4', 1930777938.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER associates', 2020.0, 1930705108.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 101820.06, 20200325.0, 'NAA8', 1930705108.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930612422.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 43230.38, 20200307.0, 'NAH4', 1930612422.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930673358.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 53828.38, 20200320.0, 'NAAX', 1930673358.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930650645.0, '2020-03-15', 20200313, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 66849.91, 20200315.0, 'NAH4', 1930650645.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER co', 2020.0, 1930612029.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 131205.85, 20200306.0, 'NAA8', 1930612029.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792283, 'SYSCO associates', 2020.0, 1930610456.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 1007.05, 20200306.0, 'NAA8', 1930610456.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930739454.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 2101.28, 20200403.0, 'NAU5', 1930739454.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 1403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701040, 'SOUTHE foundation', 2020.0, 1930670618.0, '2020-03-24', 20200319, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 8452.16, 20200324.0, 'NAA8', 1930670618.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930638248.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 26456.94, 20200312.0, 'NAH4', 1930638248.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 1405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200833713, 'JETRO us', 2020.0, 1930730917.0, '2020-04-01', 20200401, 20200401, '2020-04-21', 'USD', 'RV', 1.0, 3002.22, 20200401.0, 'NAD1', 1930730917.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930832546.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 36060.82, 20200428.0, 'NAU5', 1930832546.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0, 'KRAFT associates', 2020.0, 2960619460.0, '2020-03-10', 20200310, 20200310, '2020-04-15', 'CAD', 'RV', 1.0, 37977.0, 20200311.0, 'NAG2', 2960619460.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 1408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104472, 'MARTIN us', 2020.0, 2960620642.0, '2020-03-13', 20200314, 20200313, '2020-03-28', 'CAD', 'RV', 1.0, 6238.08, 20200318.0, 'CA10', 2960620642.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 1409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930748731.0, '2020-04-04', 20200404, 20200404, '2020-06-08', 'USD', 'RV', 1.0, 1968.28, 20200404.0, 'NAGD', 1930748731.0, 1, '2020-06-05', 'early' ); /* INSERT QUERY NO: 1410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930698339.0, '2020-03-24', 20200325, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 6032.05, 20200324.0, 'NAU5', 1930698339.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR foundation', 2020.0, 1930827565.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 115361.35, 20200427.0, 'NAA8', 1930827565.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 1412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS corporation', 2020.0, 1930801629.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 57639.94, 20200419.0, 'NAA8', 1930801629.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT in', 2020.0, 1930766839.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 126237.43, 20200408.0, 'NAA8', 1930766839.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930862613.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 15551.38, 20200506.0, 'NAH4', 1930862613.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930808989.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 50191.08, 20200422.0, 'NAA8', 1930808989.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930647149.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3384.02, 20200313.0, 'NAH4', 1930647149.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - foundation', 2020.0, 1930806381.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 76855.13, 20200420.0, 'NAA8', 1930806381.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930630631.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 10258.87, 20200311.0, 'NAH4', 1930630631.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO co', 2020.0, 2960631018.0, '2020-04-27', 20200427, 20200427, '2020-05-08', 'CAD', 'RV', 1.0, 10399.04, 20200428.0, 'CA10', 2960631018.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 1420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200708411, 'SHAM trust', 2020.0, 1930643270.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 52205.07, 20200313.0, 'NAA8', 1930643270.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M in', 2020.0, 1930861205.0, '2020-05-06', 20200505, 20200506, '2020-05-15', 'USD', 'RV', 1.0, 13462.94, 20200515.0, 'NACH', 1930861205.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930857460.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 33624.16, 20200504.0, 'NAA8', 1930857460.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 1423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930723784.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 9701.95, 20200401.0, 'NAH4', 1930723784.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 1424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US in', 2020.0, 1930575292.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 16829.62, 20200228.0, 'NAA8', 1930575292.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930756995.0, '2020-04-02', 20200407, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 35697.92, 20200402.0, 'NAA8', 1930756995.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930747215.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 17663.97, 20200403.0, 'NAA8', 1930747215.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930793379.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 13776.49, 20200416.0, 'NAAX', 1930793379.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE llc', 2020.0, 1930794485.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 81977.62, 20200417.0, 'NAA8', 1930794485.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE associates', 2020.0, 1930738916.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 16180.27, 20200402.0, 'NAA8', 1930738916.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS trust', 2020.0, 1930732980.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 26823.17, 20200402.0, 'NAA8', 1930732980.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F ', 2020.0, 1930609423.0, '2020-03-09', 20200305, 20200309, '2020-03-09', 'USD', 'RV', 1.0, 4867.87, 20200309.0, 'NAX2', 1930609423.0, 1, '2020-03-15', '0-15 days' ); /* INSERT QUERY NO: 1432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ llc', 2020.0, 1930683659.0, '2020-03-20', 20200321, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 75857.03, 20200320.0, 'NAA8', 1930683659.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930856562.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 41301.5, 20200506.0, 'NAH4', 1930856562.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC llc', 2020.0, 1930858318.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 600.72, 20200501.0, 'NAM4', 1930858318.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 1435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F in', 2020.0, 1930685651.0, '2020-03-27', 20200323, 20200327, '2020-03-27', 'USD', 'RV', 1.0, 1633.95, 20200327.0, 'NAX2', 1930685651.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 1436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB llc', 2020.0, 2960617456.0, '2020-03-02', 20200302, 20200302, '2020-03-22', 'CAD', 'RV', 1.0, 62213.86, 20200312.0, 'CA10', 2960617456.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 1437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930794052.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 8612.45, 20200415.0, 'NAA8', 1930794052.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW llc', 2020.0, 1930665835.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 5353.21, 20200319.0, 'NAA8', 1930665835.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 1439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103621, 'IT us', 2020.0, 1991838682.0, '2020-02-29', 20200225, 20200229, '2020-05-14', 'USD', 'RV', 1.0, 42800.89, 20200229.0, 'NAUX', 1991838682.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 1440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930677264.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 11099.81, 20200321.0, 'NAA8', 1930677264.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 1441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960626367.0, '2020-04-06', 20200406, 20200406, '2020-04-16', 'CAD', 'RV', 1.0, 117266.61, 20200406.0, 'CA10', 2960626367.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 1442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT llc', 2020.0, 1930670260.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 4542.89, 20200319.0, 'NAA8', 1930670260.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 1443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE in', 2020.0, 1930597543.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 97383.3, 20200304.0, 'NAA8', 1930597543.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 1444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930846456.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 82218.29, 20200430.0, 'NAA8', 1930846456.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 1445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930818910.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 776.58, 20200425.0, 'NAH4', 1930818910.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930857672.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 41504.32, 20200504.0, 'NAH4', 1930857672.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772595, 'SAFEW systems', 2020.0, 1930800198.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 103642.24, 20200420.0, 'NAA8', 1930800198.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU us', 2020.0, 1930778182.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 11340.4, 20200414.0, 'NAA8', 1930778182.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930692511.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 33055.55, 20200326.0, 'NAH4', 1930692511.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL foundation', 2020.0, 1930652462.0, '2020-03-17', 20200314, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 21300.0, 20200317.0, 'NAA8', 1930652462.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930598168.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 16617.56, 20200306.0, 'NAH4', 1930598168.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930681383.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 24945.6, 20200322.0, 'NAH4', 1930681383.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930731563.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 661.11, 20200402.0, 'NAH4', 1930731563.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930749260.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 2373.96, 20200405.0, 'NAH4', 1930749260.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930713802.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 25191.37, 20200328.0, 'NAH4', 1930713802.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930783052.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 1898.2, 20200414.0, 'NAH4', 1930783052.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930800044.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 126.24, 20200419.0, 'NAA8', 1930800044.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930813603.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 661.11, 20200422.0, 'NAH4', 1930813603.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792283, 'SYSCO ', 2020.0, 1930576893.0, '2020-02-28', 20200227, 20200228, '2020-03-31', 'USD', 'RV', 1.0, 16143.14, 20200228.0, 'NA32', 1930576893.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930644277.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 34934.61, 20200313.0, 'NAH4', 1930644277.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930714972.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 94185.21, 20200328.0, 'NAC6', 1930714972.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930601513.0, '2020-03-07', 20200304, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 15071.89, 20200307.0, 'NAH4', 1930601513.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930724206.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 66532.79, 20200331.0, 'NAH4', 1930724206.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930731495.0, '2020-04-02', 20200402, 20200402, '2020-06-06', 'USD', 'RV', 1.0, 963.08, 20200402.0, 'NAGD', 1930731495.0, 1, '2020-06-02', 'early' ); /* INSERT QUERY NO: 1465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M co', 2020.0, 1930860920.0, '2020-05-06', 20200505, 20200506, '2020-05-15', 'USD', 'RV', 1.0, 955.63, 20200515.0, 'NACH', 1930860920.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR co', 2020.0, 1930837750.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 5419.6, 20200430.0, 'NAA8', 1930837750.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 1467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA trust', 2020.0, 1930624742.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 18919.64, 20200310.0, 'NAA8', 1930624742.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930714352.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 9891.75, 20200329.0, 'NAH4', 1930714352.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930644275.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 149.94, 20200313.0, 'NAH4', 1930644275.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930759330.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 14752.8, 20200407.0, 'NAH4', 1930759330.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE co', 2020.0, 1930597814.0, '2020-03-09', 20200304, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 7766.3, 20200309.0, 'NAA8', 1930597814.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT corporation', 2020.0, 1930689736.0, '2020-03-24', 20200323, 20200324, '2020-04-28', 'USD', 'RV', 1.0, 13715.26, 20200324.0, 'NAG2', 1930689736.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR trust', 2020.0, 1930639630.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 116222.67, 20200312.0, 'NAA8', 1930639630.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930846987.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 44953.45, 20200502.0, 'NAH4', 1930846987.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960626856.0, '2020-04-09', 20200409, 20200409, '2020-04-19', 'CAD', 'RV', 1.0, 31152.82, 20200409.0, 'CA10', 2960626856.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 1476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930838501.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 13292.6, 20200429.0, 'NAU5', 1930838501.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC trust', 2020.0, 1930818963.0, '2020-04-23', 20200423, 20200423, '2020-04-26', 'USD', 'RV', 1.0, 13152.68, 20200416.0, 'NAM2', 1930818963.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930819654.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 13365.89, 20200425.0, 'NAA8', 1930819654.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930800317.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 13215.54, 20200420.0, 'NAC6', 1930800317.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA trust', 2020.0, 1930740312.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 5663.67, 20200403.0, 'NAA8', 1930740312.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930784000.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 26579.02, 20200415.0, 'NAA8', 1930784000.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 1482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930673274.0, '2020-03-24', 20200319, 20200324, '2020-05-28', 'USD', 'RV', 1.0, 67.2, 20200324.0, 'NAGD', 1930673274.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 1483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930642678.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 14392.07, 20200313.0, 'NAA8', 1930642678.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE in', 2020.0, 1930796835.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 36322.63, 20200416.0, 'NAA8', 1930796835.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930823944.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 13883.47, 20200425.0, 'NAH4', 1930823944.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783734, 'FAREW systems', 2020.0, 1930582672.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 19698.2, 20200228.0, 'NAA8', 1930582672.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 1487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930685020.0, '2020-03-23', 20200321, 20200323, '2020-05-27', 'USD', 'RV', 1.0, 4100.84, 20200323.0, 'NAGD', 1930685020.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 1488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930577948.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 1322.22, 20200228.0, 'NAH4', 1930577948.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA associates', 2020.0, 1930576019.0, '2020-02-27', 20200227, 20200227, '2020-03-18', 'USD', 'RV', 1.0, 1281.84, 20200227.0, 'NAD1', 1930576019.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930658229.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 87392.51, 20200316.0, 'NAU5', 1930658229.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA systems', 2020.0, 1930606376.0, '2020-03-05', 20200305, 20200305, '2020-03-25', 'USD', 'RV', 1.0, 1552.79, 20200305.0, 'NAD1', 1930606376.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772595, 'SAFEW ', 2020.0, 1930835654.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 98083.7, 20200501.0, 'NAA8', 1930835654.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 1493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930691208.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 5646.98, 20200325.0, 'NAH4', 1930691208.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930668092.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 81061.11, 20200318.0, 'NAA8', 1930668092.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S in', 2020.0, 1930607599.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 58258.37, 20200307.0, 'NAA8', 1930607599.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corp', 2020.0, 1930841829.0, '2020-04-30', 20200430, 20200430, '2020-04-11', 'USD', 'RV', 1.0, 8640.44, 20200401.0, 'NAM2', 1930841829.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M in', 2020.0, 2960623217.0, '2020-03-22', 20200322, 20200322, '2020-04-01', 'CAD', 'RV', 1.0, 91.92, 20200322.0, 'CA10', 2960623217.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 1498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200468954, 'SKID associates', 2020.0, 1930656130.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 78312.23, 20200316.0, 'NAA8', 1930656130.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT llc', 2020.0, 1930701782.0, '2020-03-28', 20200325, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 55622.41, 20200328.0, 'NAA8', 1930701782.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC foundation', 2020.0, 1930801654.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 37988.27, 20200420.0, 'NAA8', 1930801654.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 1501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930860633.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 17126.61, 20200506.0, 'NAH4', 1930860633.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ us', 2020.0, 1930802756.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 61727.15, 20200420.0, 'NAA8', 1930802756.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT corp', 2020.0, 1930659339.0, '2020-03-19', 20200317, 20200319, '2020-04-23', 'USD', 'RV', 1.0, 26715.08, 20200319.0, 'NAG2', 1930659339.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 1504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG us', 2020.0, 1930847917.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 27781.49, 20200502.0, 'NAA8', 1930847917.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 1505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930582774.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 23669.34, 20200229.0, 'NAC6', 1930582774.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 1506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U005', 0100025658, 'PEA corp', 2020.0, 1930666848.0, '2020-03-19', 20200318, 20200319, '2020-04-18', 'USD', 'RV', 1.0, 10323.24, 20200319.0, 'NAD5', 1930666848.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 1507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930829385.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 574.63, 20200428.0, 'NAH4', 1930829385.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930694469.0, '2020-03-24', 20200325, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 34691.99, 20200324.0, 'NAH4', 1930694469.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH llc', 2020.0, 1930598640.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 116345.44, 20200303.0, 'NAA8', 1930598640.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930854501.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 12216.98, 20200503.0, 'NAH4', 1930854501.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS co', 2020.0, 1930705306.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 2374.64, 20200325.0, 'NAA8', 1930705306.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930654829.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 20793.57, 20200316.0, 'NAA8', 1930654829.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930682627.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 9965.24, 20200323.0, 'NAH4', 1930682627.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 1514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI trust', 2020.0, 1930723618.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 37999.5, 20200331.0, 'NAA8', 1930723618.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930750456.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 10475.42, 20200406.0, 'NAH4', 1930750456.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930777448.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 935.94, 20200412.0, 'NAH4', 1930777448.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930830422.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 7664.54, 20200429.0, 'NAA8', 1930830422.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 1518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT foundation', 2020.0, 1930849411.0, '2020-05-01', 20200501, 20200501, '2020-06-04', 'USD', 'RV', 1.0, 949.69, 20200501.0, 'NAAW', 1930849411.0, 1, '2020-06-01', 'early' ); /* INSERT QUERY NO: 1519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA us', 2020.0, 1930671707.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 9937.21, 20200319.0, 'NAA8', 1930671707.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 1520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB systems', 2020.0, 2960621901.0, '2020-03-15', 20200315, 20200315, '2020-04-02', 'CAD', 'RV', 1.0, 61426.71, 20200323.0, 'CA10', 2960621901.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 1521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR systems', 2020.0, 1930642854.0, '2020-03-13', 20200312, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 6574.57, 20200313.0, 'NAGD', 1930642854.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930636751.0, '2020-03-14', 20200311, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 14776.32, 20200314.0, 'NAA8', 1930636751.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC us', 2020.0, 1930674608.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 13732.21, 20200316.0, 'NAM2', 1930674608.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY ', 2020.0, 1930788534.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 13295.21, 20200417.0, 'NAC6', 1930788534.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 1525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930724256.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 37752.24, 20200331.0, 'NAH4', 1930724256.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 1526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT ', 2020.0, 1930605043.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 92038.38, 20200305.0, 'NAA8', 1930605043.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S co', 2020.0, 1930642922.0, '2020-03-11', 20200312, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 41973.02, 20200311.0, 'NAA8', 1930642922.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100008001, 'ANHA ', 2020.0, 1930787726.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 32036.13, 20200415.0, 'NAA8', 1930787726.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 1529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corp', 2020.0, 1930717195.0, '2020-04-01', 20200329, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 42857.85, 20200401.0, 'NAA8', 1930717195.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 1530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F llc', 2020.0, 1930673362.0, '2020-03-23', 20200319, 20200323, '2020-03-23', 'USD', 'RV', 1.0, 4510.61, 20200323.0, 'NAX2', 1930673362.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 1531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930713190.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 1322.22, 20200329.0, 'NAH4', 1930713190.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930789157.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 67851.9, 20200417.0, 'NAH4', 1930789157.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930622757.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 954.36, 20200309.0, 'NAH4', 1930622757.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930765995.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1898.9, 20200409.0, 'NAH4', 1930765995.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 1535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930687312.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 5593.56, 20200323.0, 'NAH4', 1930687312.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930611213.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 17216.52, 20200306.0, 'NAH4', 1930611213.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930649471.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 52696.15, 20200314.0, 'NAH4', 1930649471.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930685420.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 18613.27, 20200322.0, 'NAH4', 1930685420.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930716782.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 1088.42, 20200330.0, 'NAH4', 1930716782.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105508, 'DOLLARA systems', 2020.0, 2960624534.0, '2020-03-30', 20200330, 20200330, '2020-04-11', 'CAD', 'RV', 1.0, 34066.23, 20200401.0, 'CA10', 2960624534.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 1541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960622167.0, '2020-03-20', 20200320, 20200320, '2020-04-02', 'CAD', 'RV', 1.0, 66800.99, 20200323.0, 'CA10', 2960622167.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 1542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER llc', 2020.0, 1930847066.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 53032.59, 20200501.0, 'NAA8', 1930847066.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC foundation', 2020.0, 1930681946.0, '2020-03-21', 20200321, 20200321, '2020-04-08', 'USD', 'RV', 1.0, 721.56, 20200316.0, 'NAM4', 1930681946.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078795, 'H T H associates', 2020.0, 1930669339.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 182.22, 20200318.0, 'NAA8', 1930669339.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930585261.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 35891.75, 20200301.0, 'NAH4', 1930585261.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930857000.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 59173.27, 20200504.0, 'NAH4', 1930857000.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M associates', 2020.0, 2960624210.0, '2020-03-24', 20200324, 20200324, '2020-04-03', 'CAD', 'RV', 1.0, 70214.51, 20200324.0, 'CA10', 2960624210.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 1548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930630502.0, '2020-03-08', 20200310, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 260.32, 20200308.0, 'NAA8', 1930630502.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200737918, 'W LEE associates', 2020.0, 1930580183.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 50824.44, 20200228.0, 'NAA8', 1930580183.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 1550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930831043.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 34021.34, 20200429.0, 'NAH4', 1930831043.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL in', 2020.0, 1930642809.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 495.33, 20200313.0, 'NAA8', 1930642809.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930744408.0, '2020-04-08', 20200403, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 3757.8, 20200408.0, 'NAA8', 1930744408.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930852338.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 30793.46, 20200503.0, 'NAH4', 1930852338.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930610810.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 441.28, 20200306.0, 'NAA8', 1930610810.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER corporation', 2020.0, 1930585383.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 5079.34, 20200301.0, 'NAA8', 1930585383.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 1556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE co', 2020.0, 1930719533.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 93219.09, 20200331.0, 'NAA8', 1930719533.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930715215.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 42308.8, 20200328.0, 'NAH4', 1930715215.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930753183.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'USD', 'RV', 1.0, 5797.89, 20200401.0, 'NAM4', 1930753183.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 1559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200984794, 'GREA corporation', 2020.0, 1930691027.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 77133.29, 20200324.0, 'NAA8', 1930691027.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200825136, 'COLOME trust', 2020.0, 1990570822.0, '2020-03-28', 20200324, 20200328, '2020-04-27', 'USD', 'RV', 1.0, 19851.87, 20200328.0, 'NA38', 1990570822.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 1561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930762786.0, '2020-04-07', 20200408, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 15781.74, 20200407.0, 'NAU5', 1930762786.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 1562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C in', 2020.0, 1930752000.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 66933.49, 20200407.0, 'NAA8', 1930752000.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930623280.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 61144.75, 20200310.0, 'NAC6', 1930623280.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930580246.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 1329.23, 20200229.0, 'NAH4', 1930580246.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930653794.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 46621.48, 20200316.0, 'NAH4', 1930653794.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 1566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930700178.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 20878.82, 20200326.0, 'NAH4', 1930700178.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769556, 'SHAM systems', 2020.0, 1930623419.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 19051.81, 20200310.0, 'NAA8', 1930623419.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200149567, 'RESER trust', 2020.0, 1930624430.0, '2020-03-09', 20200309, 20200309, '2020-04-23', 'USD', 'RV', 1.0, 31500.9, 20200309.0, 'NABG', 1930624430.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078795, 'H T H corp', 2020.0, 1930759801.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 20322.68, 20200408.0, 'NAA8', 1930759801.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930729344.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 151429.89, 20200402.0, 'NAA8', 1930729344.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE systems', 2020.0, 1930776528.0, '2020-04-15', 20200410, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 9140.58, 20200415.0, 'NAA8', 1930776528.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 1572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930749925.0, '2020-04-07', 20200404, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 14053.97, 20200407.0, 'NAH4', 1930749925.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 1573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930731494.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 74296.92, 20200402.0, 'NAA8', 1930731494.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 1574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721222, 'GO in', 2020.0, 1930883884.0, '2020-05-10', 20200510, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 131403.75, 20200510.0, 'NAA8', 1930883884.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930802906.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 15392.81, 20200420.0, 'NAH4', 1930802906.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW associates', 2020.0, 1930693594.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 143113.34, 20200326.0, 'NAA8', 1930693594.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930582401.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 102329.66, 20200301.0, 'NAA8', 1930582401.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 1578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930789658.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 8762.87, 20200417.0, 'NAC6', 1930789658.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 1579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI us', 2020.0, 1930688775.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 133861.59, 20200323.0, 'NAA8', 1930688775.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930838333.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 154181.4, 20200430.0, 'NAC6', 1930838333.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930709827.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 142036.09, 20200328.0, 'NAA8', 1930709827.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200435191, 'C& foundation', 2020.0, 1930817233.0, '2020-04-28', 20200422, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 10733.83, 20200428.0, 'NAC6', 1930817233.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930603834.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 35.56, 20200305.0, 'NAH4', 1930603834.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930815029.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 2161.45, 20200423.0, 'NAH4', 1930815029.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 1585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930779869.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 4033.98, 20200414.0, 'NAH4', 1930779869.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA associates', 2020.0, 1930761257.0, '2020-04-08', 20200408, 20200408, '2020-04-24', 'USD', 'RV', 1.0, 95.52, 20200401.0, 'NAM4', 1930761257.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930686227.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 218373.29, 20200322.0, 'NAA8', 1930686227.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960624952.0, '2020-03-31', 20200331, 20200331, '2020-04-12', 'CAD', 'RV', 1.0, 206223.68, 20200402.0, 'CA10', 2960624952.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 1589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930722638.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 22114.51, 20200330.0, 'NAH4', 1930722638.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 1590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930831656.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 55405.34, 20200428.0, 'NAH4', 1930831656.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH associates', 2020.0, 1930827698.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 6835.0, 20200426.0, 'NAA8', 1930827698.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 1592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200603114, 'BARN corporation', 2020.0, 1930655336.0, '2020-03-19', 20200316, 20200319, '2020-03-19', 'USD', 'RV', 1.0, 17197.04, 20200319.0, 'NAB1', 1930655336.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930676058.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 3637.28, 20200321.0, 'NAH4', 1930676058.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200308132, 'COLORA associates', 2020.0, 1930584805.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 22019.87, 20200229.0, 'NAA8', 1930584805.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930600082.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 12801.04, 20200305.0, 'NAU5', 1930600082.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 1596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corporation', 2020.0, 1930691764.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 184.44, 20200316.0, 'NAM4', 1930691764.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930632678.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 31040.12, 20200310.0, 'NAH4', 1930632678.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930672808.0, '2020-03-23', 20200319, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 8206.89, 20200323.0, 'NAAX', 1930672808.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930828616.0, '2020-04-29', 20200426, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 10540.47, 20200429.0, 'NAH4', 1930828616.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930699944.0, '2020-03-25', 20200325, 20200325, '2020-03-23', 'USD', 'RV', 1.0, 117.22, 20200316.0, 'NAM1', 1930699944.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930731863.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 12132.06, 20200402.0, 'NAH4', 1930731863.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103699, 'L&E IN associates', 2020.0, 1991841407.0, '2020-03-22', 20200318, 20200322, '2020-04-21', 'USD', 'RV', 1.0, 11938.31, 20200322.0, 'NAVE', 1991841407.0, 1, '2020-04-26', '0-15 days' ); /* INSERT QUERY NO: 1603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930672627.0, '2020-03-20', 20200319, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 3463.44, 20200320.0, 'NAGD', 1930672627.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930584994.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 17795.99, 20200303.0, 'NAA8', 1930584994.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 1605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH corporation', 2020.0, 1930855213.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 92578.69, 20200505.0, 'NAC6', 1930855213.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930578770.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 867.19, 20200228.0, 'NAH4', 1930578770.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930721286.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 8793.09, 20200401.0, 'NAAX', 1930721286.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR systems', 2020.0, 1930704810.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 96896.31, 20200325.0, 'NAA8', 1930704810.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC llc', 2020.0, 2960622110.0, '2020-03-17', 20200317, 20200317, '2020-04-05', 'CAD', 'RV', 1.0, 7014.95, 20200326.0, 'CA10', 2960622110.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 1610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930670733.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 1898.9, 20200319.0, 'NAH4', 1930670733.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930706275.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 25617.95, 20200327.0, 'NAH4', 1930706275.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corp', 2020.0, 1930715368.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 86295.17, 20200328.0, 'NAA8', 1930715368.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930866679.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 32375.16, 20200507.0, 'NAH4', 1930866679.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930582763.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 471.56, 20200228.0, 'NAH4', 1930582763.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE systems', 2020.0, 1930789947.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 853.44, 20200417.0, 'NAA8', 1930789947.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761497, 'NEX systems', 2020.0, 1930757477.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 190.08, 20200407.0, 'NAA8', 1930757477.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930828136.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 19899.72, 20200427.0, 'NAH4', 1930828136.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783609, 'PROFIC us', 2020.0, 1930797967.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 7281.36, 20200417.0, 'NAA8', 1930797967.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930654267.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 14279.18, 20200317.0, 'NAH4', 1930654267.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782772, 'ASSOC G co', 2020.0, 1930855822.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 74567.1, 20200504.0, 'NAA8', 1930855822.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 1621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS trust', 2020.0, 1930856335.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 100244.27, 20200504.0, 'NAA8', 1930856335.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 1622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930598712.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 77722.94, 20200304.0, 'NAA8', 1930598712.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO corp', 2020.0, 1930777768.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 40310.45, 20200413.0, 'NAA8', 1930777768.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 1624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930570091.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 15220.82, 20200227.0, 'NAAX', 1930570091.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 1625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO us', 2020.0, 2960633840.0, '2020-05-12', 20200512, 20200512, '2020-05-23', 'CAD', 'RV', 1.0, 7004.29, 20200513.0, 'CA10', 2960633840.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 1626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719526, 'SHARP S in', 2020.0, 1930732707.0, '2020-04-07', 20200402, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 7478.88, 20200407.0, 'NAA8', 1930732707.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930796986.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 30486.73, 20200417.0, 'NAH4', 1930796986.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930599418.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 71965.99, 20200305.0, 'NAH4', 1930599418.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA associates', 2020.0, 1930855991.0, '2020-05-04', 20200504, 20200504, '2020-05-24', 'USD', 'RV', 1.0, 644.64, 20200501.0, 'NAM4', 1930855991.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 1630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930745433.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 8449.17, 20200403.0, 'NAU5', 1930745433.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 1631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930703792.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 39880.93, 20200326.0, 'NAH4', 1930703792.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL in', 2020.0, 1930641597.0, '2020-03-12', 20200312, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 369.46, 20200312.0, 'NAGD', 1930641597.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M ', 2020.0, 1930777946.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 162110.49, 20200413.0, 'NAA8', 1930777946.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 1634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078795, 'H T H foundation', 2020.0, 1930811894.0, '2020-04-28', 20200422, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 5597.44, 20200428.0, 'NAA8', 1930811894.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 1635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG systems', 2020.0, 1930814943.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 75061.22, 20200422.0, 'NAA8', 1930814943.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C trust', 2020.0, 1930700555.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 39543.52, 20200326.0, 'NAA8', 1930700555.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH co', 2020.0, 1930787787.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 70938.33, 20200414.0, 'NAA8', 1930787787.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930669751.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 31878.84, 20200319.0, 'NAA8', 1930669751.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 1639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930804899.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 4862.35, 20200423.0, 'NAAX', 1930804899.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930883551.0, '2020-05-11', 20200509, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 9098.56, 20200511.0, 'NAH4', 1930883551.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 1641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT foundation', 2020.0, 1930703602.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 34743.81, 20200325.0, 'NAA8', 1930703602.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930704092.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 36206.11, 20200327.0, 'NAAX', 1930704092.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS ', 2020.0, 1930642217.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 57106.06, 20200311.0, 'NAA8', 1930642217.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930692129.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 24153.99, 20200326.0, 'NAH4', 1930692129.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO foundation', 2020.0, 2960621200.0, '2020-03-13', 20200313, 20200313, '2020-03-27', 'CAD', 'RV', 1.0, 51222.99, 20200317.0, 'CA10', 2960621200.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 1646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930731031.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 3270.04, 20200402.0, 'NAH4', 1930731031.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930629832.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 533.63, 20200310.0, 'NAA8', 1930629832.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930614011.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 72768.15, 20200306.0, 'NAH4', 1930614011.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930822253.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1203.24, 20200424.0, 'NAH4', 1930822253.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930605706.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 60826.72, 20200305.0, 'NAH4', 1930605706.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930653029.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 50428.17, 20200317.0, 'NAA8', 1930653029.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F associates', 2020.0, 2960618653.0, '2020-03-08', 20200309, 20200308, '2020-03-20', 'CAD', 'RV', 1.0, 49155.1, 20200310.0, 'CA10', 2960618653.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 1653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930745982.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 39955.37, 20200403.0, 'NAA8', 1930745982.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770677, 'KRAS co', 2020.0, 1930700357.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 18587.49, 20200327.0, 'NAA8', 1930700357.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930713562.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 35954.58, 20200329.0, 'NAH4', 1930713562.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960617665.0, '2020-03-03', 20200303, 20200303, '2020-03-14', 'CAD', 'RV', 1.0, 9840.56, 20200304.0, 'CA10', 2960617665.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 1657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT in', 2020.0, 1930714109.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 85387.89, 20200327.0, 'NAU5', 1930714109.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 1658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corp', 2020.0, 1930767194.0, '2020-04-09', 20200409, 20200409, '2020-04-11', 'USD', 'RV', 1.0, 1796.78, 20200401.0, 'NAM2', 1930767194.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930621998.0, '2020-03-11', 20200308, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 20557.14, 20200311.0, 'NAAX', 1930621998.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930624108.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 39945.93, 20200310.0, 'NAH4', 1930624108.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930797542.0, '2020-04-16', 20200417, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 39326.54, 20200416.0, 'NAC6', 1930797542.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930777063.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 30.64, 20200411.0, 'NAH4', 1930777063.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930703538.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 15431.05, 20200327.0, 'NAH4', 1930703538.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930826942.0, '2020-04-28', 20200425, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 17464.47, 20200428.0, 'NAA8', 1930826942.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930605084.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 3715.65, 20200306.0, 'NAA8', 1930605084.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M foundation', 2020.0, 1930828846.0, '2020-04-28', 20200427, 20200428, '2020-05-15', 'USD', 'RV', 1.0, 56980.59, 20200515.0, 'NACH', 1930828846.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930842952.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 77.86, 20200430.0, 'NAH4', 1930842952.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ us', 2020.0, 1930638255.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 3047.15, 20200312.0, 'NAA8', 1930638255.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930751960.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 1991.84, 20200406.0, 'NAH4', 1930751960.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER corp', 2020.0, 1930729206.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 26560.79, 20200401.0, 'NAA8', 1930729206.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930827199.0, '2020-04-28', 20200425, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 48319.9, 20200428.0, 'NAH4', 1930827199.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA corporation', 2020.0, 1930688867.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 38510.43, 20200325.0, 'NAA8', 1930688867.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY associates', 2020.0, 1930862640.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 11992.68, 20200508.0, 'NAC6', 1930862640.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930716254.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 426.66, 20200330.0, 'NAH4', 1930716254.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930846528.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 2221.18, 20200502.0, 'NAH4', 1930846528.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 1676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930829254.0, '2020-04-25', 20200427, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 581.68, 20200425.0, 'NAA8', 1930829254.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930752217.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 14772.55, 20200406.0, 'NAAX', 1930752217.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103409, 'BUTTE trust', 2020.0, 1991841855.0, '2020-04-06', 20200402, 20200406, '2020-05-06', 'USD', 'RV', 1.0, 14096.57, 20200406.0, 'NAVE', 1991841855.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 1679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930821998.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 74507.54, 20200426.0, 'NAA8', 1930821998.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930788914.0, '2020-04-21', 20200415, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 869.7, 20200421.0, 'NAA8', 1930788914.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 1681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corporation', 2020.0, 1930753423.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 54986.0, 20200407.0, 'NAA8', 1930753423.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F llc', 2020.0, 1930602810.0, '2020-03-08', 20200304, 20200308, '2020-03-08', 'USD', 'RV', 1.0, 5024.25, 20200308.0, 'NAX2', 1930602810.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 1683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930879689.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 43943.97, 20200508.0, 'NAH4', 1930879689.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 1684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930827134.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 4110.17, 20200425.0, 'NAH4', 1930827134.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930581443.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 539.96, 20200301.0, 'NAH4', 1930581443.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930691047.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 6532.6, 20200325.0, 'NAH4', 1930691047.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930720416.0, '2020-04-02', 20200330, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 15275.31, 20200402.0, 'NAH4', 1930720416.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960628415.0, '2020-04-13', 20200413, 20200413, '2020-04-23', 'CAD', 'RV', 1.0, 63515.03, 20200413.0, 'CA10', 2960628415.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 1689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA associates', 2020.0, 1930706088.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 1146.63, 20200327.0, 'NAA8', 1930706088.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930652105.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 53268.89, 20200315.0, 'NAH4', 1930652105.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930645688.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 25020.97, 20200314.0, 'NAH4', 1930645688.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930655396.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 46172.4, 20200317.0, 'NAH4', 1930655396.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930838543.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 428.71, 20200430.0, 'NAA8', 1930838543.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 1694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO in', 2020.0, 1930858350.0, '2020-05-06', 20200505, 20200506, '2020-05-16', 'USD', 'RV', 1.0, 18145.19, 20200506.0, 'NA10', 1930858350.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930719390.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 14137.45, 20200331.0, 'NAH4', 1930719390.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930611603.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 10453.76, 20200306.0, 'NAH4', 1930611603.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930714491.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 12926.73, 20200328.0, 'NAH4', 1930714491.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930674465.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 34273.12, 20200322.0, 'NAH4', 1930674465.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET us', 2020.0, 1930623298.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 4468.04, 20200310.0, 'NAA8', 1930623298.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930688185.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 16674.74, 20200324.0, 'NAH4', 1930688185.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE corp', 2020.0, 1930702245.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 73372.02, 20200325.0, 'NAA8', 1930702245.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE trust', 2020.0, 1930632013.0, '2020-03-10', 20200310, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 18224.92, 20200310.0, 'NAGD', 1930632013.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930877359.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 47398.15, 20200508.0, 'NAH4', 1930877359.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 1704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100006311, 'QUALITY C systems', 2020.0, 1930614581.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 20175.8, 20200307.0, 'NAA8', 1930614581.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930774845.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 13179.67, 20200411.0, 'NAAX', 1930774845.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 1706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930750496.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 3469.77, 20200406.0, 'NAH4', 1930750496.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B associates', 2020.0, 1930619403.0, '2020-03-06', 20200307, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 19919.09, 20200306.0, 'NAA8', 1930619403.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930594946.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 122254.4, 20200304.0, 'NAA8', 1930594946.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930650816.0, '2020-03-15', 20200313, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 12680.9, 20200315.0, 'NAH4', 1930650816.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960624031.0, '2020-03-27', 20200327, 20200327, '2020-04-12', 'CAD', 'RV', 1.0, 36069.03, 20200402.0, 'CA10', 2960624031.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 1711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO systems', 2020.0, 1930623352.0, '2020-03-11', 20200309, 20200311, '2020-04-12', 'USD', 'RV', 1.0, 71974.23, 20200311.0, 'NA32', 1930623352.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100047799, 'WALM trust', 2020.0, 1991839558.0, '2020-03-13', 20200311, 20200313, '2020-04-27', 'USD', 'RV', 1.0, 25080.0, 20200313.0, 'NAVF', 1991839558.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 1713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO us', 2020.0, 1930776766.0, '2020-04-10', 20200411, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 583.63, 20200410.0, 'NAA8', 1930776766.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200748108, 'KROGER ', 2020.0, 1930873575.0, '2020-05-06', 20200507, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 939.77, 20200506.0, 'NAA8', 1930873575.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100033439, 'WESTI us', 2020.0, 1930803028.0, '2020-04-22', 20200420, 20200422, '2020-05-02', 'USD', 'RV', 1.0, 26110.5, 20200422.0, 'NA10', 1930803028.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 1716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930605349.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 187.74, 20200301.0, 'NAM4', 1930605349.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781831, 'RITE us', 2020.0, 1930831182.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 3739.28, 20200427.0, 'NAA8', 1930831182.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930651483.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 48755.0, 20200316.0, 'NAA8', 1930651483.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA corp', 2020.0, 1930623455.0, '2020-03-09', 20200309, 20200309, '2020-05-13', 'USD', 'RV', 1.0, 4619.44, 20200309.0, 'NAGD', 1930623455.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759082, 'INGL corporation', 2020.0, 1930877873.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 91806.32, 20200508.0, 'NAA8', 1930877873.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO foundation', 2020.0, 2960628207.0, '2020-04-12', 20200413, 20200412, '2020-04-29', 'CAD', 'RV', 1.0, 42871.38, 20200419.0, 'CA10', 2960628207.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 1722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930681741.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 89634.91, 20200321.0, 'NAA8', 1930681741.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corporation', 2020.0, 1930733356.0, '2020-03-30', 20200402, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 55146.95, 20200330.0, 'NAA8', 1930733356.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930852416.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 26386.36, 20200504.0, 'NAH4', 1930852416.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930781910.0, '2020-04-03', 20200413, 20200403, '2020-05-18', 'USD', 'RV', 1.0, 74541.04, 20200403.0, 'NAWP', 1930781910.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 1726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corporation', 2020.0, 1930705040.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 32039.34, 20200325.0, 'NAA8', 1930705040.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930768784.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 143939.32, 20200409.0, 'NAA8', 1930768784.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930691289.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 4088.45, 20200324.0, 'NAH4', 1930691289.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA llc', 2020.0, 1930638515.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 40436.99, 20200312.0, 'NAA8', 1930638515.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930723124.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 10008.6, 20200330.0, 'NAH4', 1930723124.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S foundation', 2020.0, 1930769202.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 112152.59, 20200411.0, 'NAA8', 1930769202.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930797888.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 26560.01, 20200417.0, 'NAH4', 1930797888.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930598021.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 7214.89, 20200304.0, 'NAC6', 1930598021.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930737839.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 5091.3, 20200404.0, 'NAH4', 1930737839.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE corp', 2020.0, 1930857961.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 4127.27, 20200504.0, 'NAA8', 1930857961.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 1736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET foundation', 2020.0, 1930857775.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 8270.1, 20200506.0, 'NAA8', 1930857775.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 1737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT co', 2020.0, 1930831988.0, '2020-05-01', 20200428, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 11452.38, 20200501.0, 'NAA8', 1930831988.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930632143.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 35.56, 20200312.0, 'NAH4', 1930632143.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 1739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE systems', 2020.0, 1930817189.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 105128.17, 20200424.0, 'NAA8', 1930817189.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930752680.0, '2020-04-07', 20200406, 20200407, '2020-06-11', 'USD', 'RV', 1.0, 10315.2, 20200407.0, 'NAGD', 1930752680.0, 1, '2020-06-07', 'early' ); /* INSERT QUERY NO: 1741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930829200.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 571.63, 20200427.0, 'NAA8', 1930829200.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930740185.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 1809.2, 20200404.0, 'NAA8', 1930740185.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 1743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930670134.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 15617.13, 20200319.0, 'NAAX', 1930670134.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930598699.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 49050.53, 20200304.0, 'NAH4', 1930598699.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741831, 'SUPE corp', 2020.0, 1930798627.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 12382.61, 20200417.0, 'NAA8', 1930798627.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA us', 2020.0, 1930661360.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 29553.78, 20200318.0, 'NAH4', 1930661360.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 1747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930856255.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 6641.36, 20200504.0, 'NAH4', 1930856255.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 1748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930830336.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 10161.03, 20200428.0, 'NAH4', 1930830336.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930627679.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 9086.04, 20200311.0, 'NAAX', 1930627679.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100052024, 'CPG llc', 2020.0, 1930730158.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 19834.63, 20200401.0, 'NAA8', 1930730158.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930767632.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 13334.82, 20200409.0, 'NAC6', 1930767632.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100000222, 'SMITHFIE co', 2020.0, 1930793676.0, '2020-04-21', 20200416, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 3304.75, 20200421.0, 'NAA8', 1930793676.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930673630.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 9936.4, 20200321.0, 'NAH4', 1930673630.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930686048.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 503.33, 20200323.0, 'NAA8', 1930686048.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930724105.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 13969.91, 20200402.0, 'NAAX', 1930724105.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 1756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100006311, 'QUALITY C foundation', 2020.0, 1930581646.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 21011.32, 20200228.0, 'NAA8', 1930581646.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 1757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930731170.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 24186.68, 20200402.0, 'NAC6', 1930731170.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 1758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930624114.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 42729.45, 20200309.0, 'NAH4', 1930624114.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930772119.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 19284.12, 20200410.0, 'NAH4', 1930772119.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 1760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930714196.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 6361.71, 20200328.0, 'NAH4', 1930714196.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200785971, 'SYSCO corp', 2020.0, 1930687609.0, '2020-03-23', 20200323, 20200323, '2020-04-24', 'USD', 'RV', 1.0, 19403.93, 20200323.0, 'NA32', 1930687609.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930584824.0, '2020-03-03', 20200229, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 29800.89, 20200303.0, 'NAAX', 1930584824.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 1763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930710059.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 18223.46, 20200326.0, 'NAH4', 1930710059.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930794306.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 64818.59, 20200415.0, 'NAA8', 1930794306.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930823757.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 13222.93, 20200425.0, 'NAA8', 1930823757.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO trust', 2020.0, 1930615434.0, '2020-03-12', 20200306, 20200312, '2020-04-13', 'USD', 'RV', 1.0, 10102.03, 20200312.0, 'NA32', 1930615434.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930738776.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 1851.59, 20200403.0, 'NAH4', 1930738776.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA associates', 2020.0, 1930877740.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 554.46, 20200501.0, 'NAM4', 1930877740.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930839068.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 42729.64, 20200501.0, 'NAA8', 1930839068.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930875602.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 2211.13, 20200507.0, 'NAA8', 1930875602.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 1771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930854131.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 32143.92, 20200504.0, 'NAH4', 1930854131.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930641074.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 53981.68, 20200313.0, 'NAA8', 1930641074.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR foundation', 2020.0, 1930876919.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 80132.98, 20200508.0, 'NAA8', 1930876919.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 1774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC co', 2020.0, 1930605008.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 1374.47, 20200301.0, 'NAM4', 1930605008.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930838507.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 13251.45, 20200430.0, 'NAH4', 1930838507.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST in', 2020.0, 1930671506.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 82487.97, 20200320.0, 'NAAX', 1930671506.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930695837.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 76311.56, 20200325.0, 'NAA8', 1930695837.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930727063.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 22055.04, 20200331.0, 'NAU5', 1930727063.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100031920, 'AOF SER trust', 2020.0, 2960631742.0, '2020-04-29', 20200429, 20200429, '2020-05-11', 'CAD', 'RV', 1.0, 10373.1, 20200501.0, 'CA10', 2960631742.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930784326.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 19344.3, 20200416.0, 'NAA8', 1930784326.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930854948.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 74438.79, 20200504.0, 'NAAX', 1930854948.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 1782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930796759.0, '2020-04-17', 20200418, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 33906.1, 20200417.0, 'NAC6', 1930796759.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 1783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930773042.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 29027.46, 20200409.0, 'NAA8', 1930773042.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930846869.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 13572.69, 20200503.0, 'NAH4', 1930846869.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930646167.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 17162.51, 20200313.0, 'NAH4', 1930646167.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ associates', 2020.0, 1930791346.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 4004.01, 20200415.0, 'NAA8', 1930791346.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 1787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100044010, 'LAND trust', 2020.0, 1930666083.0, '2020-03-19', 20200318, 20200319, '2020-04-20', 'USD', 'RV', 1.0, 66097.08, 20200319.0, 'NA32', 1930666083.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200486270, 'BAR trust', 2020.0, 1930582002.0, '2020-03-05', 20200302, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 9538.12, 20200305.0, 'NAA8', 1930582002.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742521, 'GLA corporation', 2020.0, 1930606133.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 7551.0, 20200305.0, 'NAA8', 1930606133.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 1790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960634105.0, '2020-05-11', 20200511, 20200511, '2020-05-21', 'CAD', 'RV', 1.0, 141985.31, 20200511.0, 'CA10', 2960634105.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 1791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200713007, 'KEEFE trust', 2020.0, 1930797683.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 28322.0, 20200417.0, 'NAA8', 1930797683.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100032523, 'SALM trust', 2020.0, 1930733018.0, '2020-04-04', 20200402, 20200404, '2020-04-30', 'USD', 'RV', 1.0, 37441.8, 20200404.0, 'NAV9', 1930733018.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 1793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960619705.0, '2020-03-09', 20200309, 20200309, '2020-03-19', 'CAD', 'RV', 1.0, 69126.63, 20200309.0, 'CA10', 2960619705.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 1794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corporation', 2020.0, 1930586779.0, '2020-03-02', 20200302, 20200302, '2020-03-24', 'USD', 'RV', 1.0, 6147.44, 20200301.0, 'NAM4', 1930586779.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930675127.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 329.06, 20200321.0, 'NAH4', 1930675127.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930831714.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 50360.16, 20200428.0, 'NAA8', 1930831714.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930653185.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 13722.98, 20200315.0, 'NAH4', 1930653185.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930715411.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 24880.73, 20200329.0, 'NAH4', 1930715411.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO associates', 2020.0, 1930707481.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 22787.33, 20200326.0, 'NAA8', 1930707481.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930756435.0, '2020-04-06', 20200407, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 3717.57, 20200406.0, 'NAC6', 1930756435.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT co', 2020.0, 1930673424.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 84164.31, 20200320.0, 'NAA8', 1930673424.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO systems', 2020.0, 1930788461.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 1611.28, 20200416.0, 'NAA8', 1930788461.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 1803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930659356.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 82170.07, 20200317.0, 'NAU5', 1930659356.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ ', 2020.0, 1930774836.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 100147.89, 20200410.0, 'NAA8', 1930774836.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930727449.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 8721.44, 20200402.0, 'NAH4', 1930727449.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH foundation', 2020.0, 1930779488.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 50374.79, 20200413.0, 'NAA8', 1930779488.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 1807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU systems', 2020.0, 1930786391.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 7651.24, 20200415.0, 'NAC6', 1930786391.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 1808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST llc', 2020.0, 1930660498.0, '2020-03-20', 20200317, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 34676.16, 20200320.0, 'NAAX', 1930660498.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930683413.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 80712.97, 20200322.0, 'NAAX', 1930683413.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT corp', 2020.0, 1930576412.0, '2020-02-28', 20200226, 20200228, '2020-04-03', 'USD', 'RV', 1.0, 26448.0, 20200228.0, 'NAG2', 1930576412.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930748424.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 32978.46, 20200406.0, 'NAAX', 1930748424.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930822652.0, '2020-04-30', 20200424, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 5374.34, 20200430.0, 'NAA8', 1930822652.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930862513.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 6616.81, 20200507.0, 'NAH4', 1930862513.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960625109.0, '2020-03-28', 20200328, 20200328, '2020-04-07', 'CAD', 'RV', 1.0, 62188.4, 20200328.0, 'CA10', 2960625109.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 1815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA foundation', 2020.0, 1930710073.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 66356.43, 20200327.0, 'NAA8', 1930710073.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 1816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140101682, 'SUPERVAL foundation', 2020.0, 1991841854.0, '2020-04-06', 20200402, 20200406, '2020-05-06', 'USD', 'RV', 1.0, 477.36, 20200406.0, 'NAVE', 1991841854.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 1817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930831614.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 5163.98, 20200429.0, 'NAH4', 1930831614.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY us', 2020.0, 1930753013.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 13176.3, 20200406.0, 'NAC6', 1930753013.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930760009.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1193.42, 20200409.0, 'NAH4', 1930760009.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 1820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930625943.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 75624.8, 20200310.0, 'NAA8', 1930625943.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER us', 2020.0, 1930776525.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 57885.45, 20200411.0, 'NAA8', 1930776525.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930832239.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 24855.15, 20200428.0, 'NAH4', 1930832239.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F ', 2020.0, 1930833022.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 26448.11, 20200428.0, 'NAA8', 1930833022.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930683037.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 7664.54, 20200321.0, 'NAA8', 1930683037.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930833926.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 39568.81, 20200428.0, 'NAA8', 1930833926.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930600897.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 11099.81, 20200303.0, 'NAA8', 1930600897.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER llc', 2020.0, 1930848773.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 72035.03, 20200502.0, 'NAA8', 1930848773.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG corporation', 2020.0, 1930860370.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 41957.63, 20200506.0, 'NAA8', 1930860370.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 1829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN foundation', 2020.0, 1930747508.0, '2020-04-10', 20200404, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 19339.71, 20200410.0, 'NAA8', 1930747508.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930688866.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 704.58, 20200322.0, 'NAA8', 1930688866.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930797488.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 2019.69, 20200417.0, 'NAH4', 1930797488.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103713, 'PRIM foundation', 2020.0, 1991839848.0, '2020-02-29', 20200225, 20200229, '2020-03-30', 'USD', 'RV', 1.0, 6280.05, 20200229.0, 'NAVE', 1991839848.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 1833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M ', 2020.0, 2960632188.0, '2020-05-04', 20200504, 20200504, '2020-05-14', 'CAD', 'RV', 1.0, 38400.15, 20200504.0, 'CA10', 2960632188.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 1834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930716004.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 31174.99, 20200328.0, 'NAH4', 1930716004.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE foundation', 2020.0, 1930624311.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 1508.4, 20200309.0, 'NAA8', 1930624311.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930589765.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 5108.52, 20200303.0, 'NAA8', 1930589765.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930656129.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 140976.65, 20200317.0, 'NAA8', 1930656129.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930749009.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 46840.62, 20200406.0, 'NAH4', 1930749009.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930623357.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 899.24, 20200309.0, 'NAA8', 1930623357.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930689742.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 86411.03, 20200325.0, 'NAH4', 1930689742.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930880192.0, '2020-05-10', 20200508, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 49449.95, 20200510.0, 'NAH4', 1930880192.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 1842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930818046.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 405.48, 20200416.0, 'NAM4', 1930818046.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 1843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW in', 2020.0, 1930725904.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 39738.55, 20200331.0, 'NAA8', 1930725904.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 1844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS llc', 2020.0, 1930689683.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 56891.5, 20200323.0, 'NAA8', 1930689683.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC corporation', 2020.0, 1930756521.0, '2020-04-09', 20200406, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 25638.4, 20200409.0, 'NAA8', 1930756521.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930652004.0, '2020-03-17', 20200314, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 18947.86, 20200317.0, 'NAH4', 1930652004.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT trust', 2020.0, 1930623399.0, '2020-03-10', 20200309, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 14356.51, 20200310.0, 'NAGD', 1930623399.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 1848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY associates', 2020.0, 1930781016.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 13137.47, 20200414.0, 'NAC6', 1930781016.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 1849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL foundation', 2020.0, 1930723230.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 58452.58, 20200401.0, 'NAA8', 1930723230.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 1850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corp', 2020.0, 1930817935.0, '2020-04-23', 20200423, 20200423, '2020-04-26', 'USD', 'RV', 1.0, 773.68, 20200416.0, 'NAM2', 1930817935.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 1851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930692128.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 4272.86, 20200326.0, 'NAH4', 1930692128.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO foundation', 2020.0, 2960622518.0, '2020-03-19', 20200319, 20200319, '2020-03-29', 'CAD', 'RV', 1.0, 38584.45, 20200319.0, 'CA10', 2960622518.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 1853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200464724, 'LAND ', 2020.0, 1930913993.0, '2020-05-19', 20200519, 20200519, '2020-05-29', 'USD', 'RV', 1.0, 194864.0, 20200519.0, 'NA10', 1930913993.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 1854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701040, 'SOUTHE co', 2020.0, 1930747954.0, '2020-04-11', 20200404, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 15407.26, 20200411.0, 'NAA8', 1930747954.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930794643.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 41881.56, 20200417.0, 'NAH4', 1930794643.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930784759.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 1164.87, 20200415.0, 'NAH4', 1930784759.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930827701.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 50621.79, 20200426.0, 'NAH4', 1930827701.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930623651.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 5602.09, 20200310.0, 'NAH4', 1930623651.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930765334.0, '2020-04-10', 20200409, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 10063.35, 20200410.0, 'NAGD', 1930765334.0, 1, '2020-06-11', 'early' ); /* INSERT QUERY NO: 1860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO co', 2020.0, 2960619137.0, '2020-03-08', 20200308, 20200308, '2020-03-18', 'CAD', 'RV', 1.0, 173414.41, 20200308.0, 'CA10', 2960619137.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 1861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA associates', 2020.0, 1930761194.0, '2020-04-08', 20200408, 20200408, '2020-04-24', 'USD', 'RV', 1.0, 267.36, 20200401.0, 'NAM4', 1930761194.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930675475.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 1301.5, 20200321.0, 'NAH4', 1930675475.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930661835.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 44577.48, 20200317.0, 'NAH4', 1930661835.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA in', 2020.0, 1930705781.0, '2020-03-26', 20200326, 20200326, '2020-04-25', 'USD', 'RV', 1.0, 55079.0, 20200326.0, 'NAD5', 1930705781.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 1865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100011958, 'IND corp', 2020.0, 1991839554.0, '2020-03-09', 20200309, 20200309, '2020-04-23', 'USD', 'RV', 1.0, 10.08, 20200309.0, 'NAVF', 1991839554.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 1866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930643017.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 53709.8, 20200312.0, 'NAA8', 1930643017.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930705622.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 1017.41, 20200328.0, 'NAH4', 1930705622.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200725421, 'BEN us', 2020.0, 1930674211.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 26654.25, 20200320.0, 'NAA8', 1930674211.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960628526.0, '2020-04-15', 20200415, 20200415, '2020-05-03', 'CAD', 'RV', 1.0, 172528.32, 20200423.0, 'CA10', 2960628526.0, 1, '2020-05-09', '0-15 days' ); /* INSERT QUERY NO: 1870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930842694.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 575.37, 20200429.0, 'NAA8', 1930842694.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930744185.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 3639.14, 20200403.0, 'NAA8', 1930744185.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M associates', 2020.0, 1930828689.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 37322.23, 20200427.0, 'NAA8', 1930828689.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA foundation', 2020.0, 1930851925.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 62724.65, 20200503.0, 'NAH4', 1930851925.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 1874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930843005.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 1329.23, 20200501.0, 'NAH4', 1930843005.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 1875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO foundation', 2020.0, 1930713763.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 44546.0, 20200329.0, 'NAA8', 1930713763.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA corp', 2020.0, 1930691588.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 8091.69, 20200324.0, 'NAA8', 1930691588.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930755354.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 100205.31, 20200406.0, 'NAA8', 1930755354.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 1878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727278, 'BLOU llc', 2020.0, 1930611680.0, '2020-03-10', 20200306, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 73890.43, 20200310.0, 'NAA8', 1930611680.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO trust', 2020.0, 2960617957.0, '2020-03-02', 20200302, 20200302, '2020-03-15', 'CAD', 'RV', 1.0, 141747.66, 20200305.0, 'CA10', 2960617957.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 1880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST ', 2020.0, 1930670668.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 16997.76, 20200319.0, 'NAAX', 1930670668.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930646101.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 71.46, 20200313.0, 'NAA8', 1930646101.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO in', 2020.0, 1930608213.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 15676.93, 20200305.0, 'NAA8', 1930608213.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930594453.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 524.55, 20200303.0, 'NAA8', 1930594453.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930685828.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 13426.64, 20200324.0, 'NAH4', 1930685828.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930811088.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 1418.08, 20200422.0, 'NAH4', 1930811088.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078795, 'H T H in', 2020.0, 1930787885.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 512.73, 20200415.0, 'NAA8', 1930787885.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 1887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930666391.0, '2020-03-18', 20200318, 20200318, '2020-04-21', 'USD', 'RV', 1.0, 6848.21, 20200318.0, 'NAAW', 1930666391.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 1888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930796658.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 3556.71, 20200417.0, 'NAH4', 1930796658.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930587409.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 22359.12, 20200302.0, 'NAC6', 1930587409.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 1890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960628144.0, '2020-04-15', 20200415, 20200415, '2020-04-26', 'CAD', 'RV', 1.0, 255948.5, 20200416.0, 'CA10', 2960628144.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 1891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930744085.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 39439.34, 20200404.0, 'NAH4', 1930744085.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER ', 2020.0, 1930581624.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 14189.05, 20200229.0, 'NAA8', 1930581624.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 1893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI ', 2020.0, 1930578019.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 72979.49, 20200228.0, 'NAA8', 1930578019.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 1894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M systems', 2020.0, 2960629067.0, '2020-04-19', 20200419, 20200419, '2020-04-30', 'CAD', 'RV', 1.0, 12900.01, 20200420.0, 'CA10', 2960629067.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 1895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930646263.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 498.48, 20200313.0, 'NAH4', 1930646263.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 1896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930597850.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 36928.98, 20200304.0, 'NAH4', 1930597850.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930622009.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 3227.43, 20200308.0, 'NAH4', 1930622009.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW foundation', 2020.0, 1930731754.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 71546.66, 20200401.0, 'NAA8', 1930731754.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 1899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036292, 'AMY ', 2020.0, 1930651645.0, '2020-03-13', 20200314, 20200313, '2020-03-29', 'USD', 'RV', 1.0, 17336.04, 20200313.0, 'NA3F', 1930651645.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930611903.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 39520.1, 20200309.0, 'NAH4', 1930611903.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT in', 2020.0, 1930830964.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 75947.1, 20200428.0, 'NAA8', 1930830964.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ foundation', 2020.0, 1930612409.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 39983.82, 20200306.0, 'NAA8', 1930612409.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930754300.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 163153.87, 20200407.0, 'NAA8', 1930754300.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 1904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA us', 2020.0, 1930597374.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 15770.72, 20200306.0, 'NAA8', 1930597374.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 1905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783189, 'PERFOR in', 2020.0, 1930586477.0, '2020-03-03', 20200302, 20200303, '2020-03-23', 'USD', 'RV', 1.0, 47827.06, 20200303.0, 'NAD1', 1930586477.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930593365.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 9802.64, 20200303.0, 'NAH4', 1930593365.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930683636.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 20691.83, 20200322.0, 'NAH4', 1930683636.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 1908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930817207.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 25557.12, 20200423.0, 'NAA8', 1930817207.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930683922.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 5707.35, 20200323.0, 'NAH4', 1930683922.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA systems', 2020.0, 1930740712.0, '2020-04-03', 20200403, 20200403, '2020-04-24', 'USD', 'RV', 1.0, 6744.6, 20200401.0, 'NAM4', 1930740712.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 1911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR us', 2020.0, 1930623718.0, '2020-03-10', 20200309, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 596.14, 20200310.0, 'NAGD', 1930623718.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 1912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS llc', 2020.0, 1930886369.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 3300.39, 20200511.0, 'NAA8', 1930886369.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 1913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930760329.0, '2020-04-14', 20200407, 20200414, '2020-06-18', 'USD', 'RV', 1.0, 134.4, 20200414.0, 'NAGD', 1930760329.0, 1, '2020-06-14', 'early' ); /* INSERT QUERY NO: 1914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930629752.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 661.11, 20200310.0, 'NAH4', 1930629752.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 1915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930772712.0, '2020-04-10', 20200409, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 767.69, 20200410.0, 'NAGD', 1930772712.0, 1, '2020-06-11', 'early' ); /* INSERT QUERY NO: 1916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930623660.0, '2020-03-08', 20200309, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 25174.89, 20200308.0, 'NAH4', 1930623660.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930577175.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 73306.4, 20200227.0, 'NAH4', 1930577175.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 1918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL co', 2020.0, 1930847299.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 25579.54, 20200505.0, 'NAA8', 1930847299.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE co', 2020.0, 1930739007.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 60774.71, 20200403.0, 'NAA8', 1930739007.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930675250.0, '2020-03-26', 20200320, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 6847.99, 20200326.0, 'NAH4', 1930675250.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA trust', 2020.0, 1930605984.0, '2020-03-05', 20200305, 20200305, '2020-03-11', 'USD', 'RV', 1.0, 565.82, 20200301.0, 'NAM2', 1930605984.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100001196, 'DOLLAR corp', 2020.0, 1930860402.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 25639.74, 20200506.0, 'NAA8', 1930860402.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 1923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930799855.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 63.48, 20200418.0, 'NAA8', 1930799855.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 1924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F corporation', 2020.0, 1930669555.0, '2020-03-22', 20200318, 20200322, '2020-03-22', 'USD', 'RV', 1.0, 11029.2, 20200322.0, 'NAX2', 1930669555.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 1925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET associates', 2020.0, 1930594978.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 1034.31, 20200303.0, 'NAA8', 1930594978.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930709813.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 1840.63, 20200327.0, 'NAC6', 1930709813.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 1927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S co', 2020.0, 1930693126.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 128218.9, 20200326.0, 'NAA8', 1930693126.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 1928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930598204.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 6946.7, 20200305.0, 'NAC6', 1930598204.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 1929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930655802.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 66.37, 20200315.0, 'NAA8', 1930655802.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 1930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930861090.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 16745.36, 20200505.0, 'NAH4', 1930861090.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 1931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100046483, 'PAPA llc', 2020.0, 1991842431.0, '2020-04-20', 20200420, 20200420, '2020-04-20', 'USD', 'RV', 1.0, 13938.4, 20200420.0, 'NAUP', 1991842431.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 1932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH foundation', 2020.0, 1930666745.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 117029.89, 20200318.0, 'NAA8', 1930666745.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930837724.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 56656.39, 20200430.0, 'NAH4', 1930837724.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 1934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE in', 2020.0, 1930668304.0, '2020-03-23', 20200318, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 4171.27, 20200323.0, 'NAA8', 1930668304.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - us', 2020.0, 1930861500.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 12233.57, 20200505.0, 'NAA8', 1930861500.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930752240.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 73877.72, 20200406.0, 'NAA8', 1930752240.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 1937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930798918.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 3227.43, 20200418.0, 'NAH4', 1930798918.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F systems', 2020.0, 1930693184.0, '2020-03-27', 20200324, 20200327, '2020-03-27', 'USD', 'RV', 1.0, 18259.92, 20200327.0, 'NAX2', 1930693184.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 1939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ corp', 2020.0, 1930729847.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 7481.23, 20200331.0, 'NAA8', 1930729847.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M associates', 2020.0, 1930675438.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 24349.36, 20200320.0, 'NAA8', 1930675438.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 1941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930651376.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 14204.38, 20200314.0, 'NAAX', 1930651376.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 1942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY foundation', 2020.0, 1930808630.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 46869.77, 20200422.0, 'NAC6', 1930808630.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930852426.0, '2020-05-06', 20200502, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 12101.0, 20200506.0, 'NAA8', 1930852426.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA corp', 2020.0, 1930647140.0, '2020-03-13', 20200313, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 3191.4, 20200313.0, 'NAGD', 1930647140.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 1945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU ', 2020.0, 1930740350.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 84208.82, 20200403.0, 'NAA8', 1930740350.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 1946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA foundation', 2020.0, 1930631486.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 344.73, 20200311.0, 'NAA8', 1930631486.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763229, 'MAINES associates', 2020.0, 1930825614.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 17840.56, 20200424.0, 'NAA8', 1930825614.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 1948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M corp', 2020.0, 1930807969.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 103428.23, 20200420.0, 'NAA8', 1930807969.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 1949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200606231, 'INTER llc', 2020.0, 1930617502.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 38892.2, 20200309.0, 'NAA8', 1930617502.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 1950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930827236.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 45650.81, 20200426.0, 'NAH4', 1930827236.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930716927.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 31371.57, 20200329.0, 'NAH4', 1930716927.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 1952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770677, 'KRAS us', 2020.0, 1930808283.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 84800.62, 20200422.0, 'NAA8', 1930808283.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR trust', 2020.0, 1930655042.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 11350.47, 20200317.0, 'NAA8', 1930655042.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 1954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930587739.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 171.93, 20200303.0, 'NAA8', 1930587739.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 1955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930659314.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 66309.61, 20200317.0, 'NAH4', 1930659314.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 1956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100056749, 'OLD C foundation', 2020.0, 1930557633.0, '2020-02-27', 20200221, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 12282.73, 20200227.0, 'NAA8', 1930557633.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 1957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930748523.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 12240.48, 20200404.0, 'NAH4', 1930748523.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930689833.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1721.73, 20200324.0, 'NAA8', 1930689833.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 1959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930844498.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 7340.09, 20200501.0, 'NAA8', 1930844498.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA co', 2020.0, 1930595980.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 18142.14, 20200304.0, 'NAA8', 1930595980.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 1961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930582552.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 42258.04, 20200228.0, 'NAH4', 1930582552.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 1962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA co', 2020.0, 1930803941.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 13432.93, 20200420.0, 'NAA8', 1930803941.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 1963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT in', 2020.0, 1930575805.0, '2020-02-27', 20200226, 20200227, '2020-04-02', 'USD', 'RV', 1.0, 19451.04, 20200227.0, 'NAG2', 1930575805.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 1964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER llc', 2020.0, 1930710317.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 129158.36, 20200328.0, 'NAA8', 1930710317.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 1965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930573853.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 543.72, 20200227.0, 'NAA8', 1930573853.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 1966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS corp', 2020.0, 1930757566.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 45626.22, 20200409.0, 'NAA8', 1930757566.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043892, 'IN-N trust', 2020.0, 1930593725.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 15410.38, 20200303.0, 'NAA8', 1930593725.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 1968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930633873.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 53636.48, 20200311.0, 'NAA8', 1930633873.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 1969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M systems', 2020.0, 2960630775.0, '2020-05-01', 20200502, 20200501, '2020-05-13', 'CAD', 'RV', 1.0, 58770.62, 20200503.0, 'CA10', 2960630775.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 1970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930800144.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 56850.45, 20200419.0, 'NAH4', 1930800144.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE co', 2020.0, 1930788765.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 49457.0, 20200416.0, 'NAA8', 1930788765.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB ', 2020.0, 2960627544.0, '2020-04-08', 20200408, 20200408, '2020-04-19', 'CAD', 'RV', 1.0, 95404.27, 20200409.0, 'CA10', 2960627544.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 1973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930826491.0, '2020-04-25', 20200425, 20200425, '2020-05-09', 'USD', 'RV', 1.0, 59.16, 20200416.0, 'NAM4', 1930826491.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930620176.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 739.08, 20200309.0, 'NAC6', 1930620176.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 1975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200382900, 'J & J trust', 2020.0, 1930581152.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 113871.63, 20200228.0, 'NAA8', 1930581152.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 1976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930699463.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 3983.68, 20200326.0, 'NAH4', 1930699463.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 1977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930793234.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 23991.69, 20200416.0, 'NAH4', 1930793234.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 1978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930764217.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 44032.01, 20200408.0, 'NAH4', 1930764217.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 1979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA llc', 2020.0, 1930856445.0, '2020-05-04', 20200504, 20200504, '2020-05-24', 'USD', 'RV', 1.0, 139.32, 20200501.0, 'NAM4', 1930856445.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 1980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE associates', 2020.0, 1930737844.0, '2020-04-07', 20200402, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 4974.72, 20200407.0, 'NAA8', 1930737844.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 1981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930751598.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 3302.14, 20200407.0, 'NAC6', 1930751598.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC llc', 2020.0, 1930602977.0, '2020-03-05', 20200305, 20200305, '2020-03-08', 'USD', 'RV', 1.0, 2243.59, 20200301.0, 'NAM1', 1930602977.0, 1, '2020-03-05', 'early' ); /* INSERT QUERY NO: 1983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200002965, 'DECA associates', 2020.0, 1930807932.0, '2020-04-21', 20200421, 20200421, '2020-04-23', 'USD', 'RV', 1.0, 49470.81, 20200416.0, 'NAM1', 1930807932.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO systems', 2020.0, 2960627212.0, '2020-04-06', 20200406, 20200406, '2020-04-18', 'CAD', 'RV', 1.0, 2545.09, 20200408.0, 'CA10', 2960627212.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 1985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE us', 2020.0, 1930818613.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 18677.86, 20200425.0, 'NAA8', 1930818613.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 1986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930829091.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 8793.09, 20200427.0, 'NAAX', 1930829091.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 1987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930739586.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 1017.41, 20200405.0, 'NAH4', 1930739586.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 1988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corp', 2020.0, 1930606164.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 3220.65, 20200301.0, 'NAM4', 1930606164.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 1989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930883683.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 46444.59, 20200510.0, 'NAH4', 1930883683.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 1990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corporation', 2020.0, 1930809991.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 1654.95, 20200421.0, 'NAA8', 1930809991.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 1991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG llc', 2020.0, 1930638063.0, '2020-03-11', 20200311, 20200311, '2020-05-15', 'USD', 'RV', 1.0, 19818.06, 20200311.0, 'NAGD', 1930638063.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 1992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930768502.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 5235.08, 20200409.0, 'NAH4', 1930768502.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 1993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER us', 2020.0, 1930650965.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 62836.56, 20200315.0, 'NAA8', 1930650965.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930867370.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 17564.61, 20200508.0, 'NAH4', 1930867370.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 1995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930766033.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 8053.69, 20200408.0, 'NAAX', 1930766033.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 1996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930768165.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 49.2, 20200410.0, 'NAH4', 1930768165.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 1997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930782810.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 65775.97, 20200413.0, 'NAC6', 1930782810.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 1998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930641967.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 71207.16, 20200313.0, 'NAA8', 1930641967.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 1999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930787921.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 37426.99, 20200416.0, 'NAH4', 1930787921.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930630526.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 68585.45, 20200310.0, 'NAC6', 1930630526.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB co', 2020.0, 2960617904.0, '2020-02-29', 20200229, 20200229, '2020-03-19', 'CAD', 'RV', 1.0, 80003.16, 20200309.0, 'CA10', 2960617904.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 2002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930731323.0, '2020-04-02', 20200401, 20200402, '2020-04-22', 'USD', 'RV', 1.0, 1105.23, 20200402.0, 'NAD1', 1930731323.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930755397.0, '2020-04-02', 20200406, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 12194.09, 20200402.0, 'NAA8', 1930755397.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU llc', 2020.0, 1930860351.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 3363.47, 20200506.0, 'NAA8', 1930860351.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930675165.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 67123.85, 20200321.0, 'NAH4', 1930675165.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930629663.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 8755.2, 20200310.0, 'NAH4', 1930629663.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S us', 2020.0, 1930846652.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 143778.78, 20200501.0, 'NAA8', 1930846652.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER foundation', 2020.0, 1930651674.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 79706.51, 20200314.0, 'NAA8', 1930651674.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC corporation', 2020.0, 2960619407.0, '2020-03-06', 20200306, 20200306, '2020-03-23', 'CAD', 'RV', 1.0, 30179.94, 20200313.0, 'CA10', 2960619407.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 2010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930683286.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 33696.47, 20200322.0, 'NAH4', 1930683286.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC co', 2020.0, 1930859946.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 4167.65, 20200501.0, 'NAM4', 1930859946.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930645649.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 964.29, 20200312.0, 'NAA8', 1930645649.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930800320.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 15459.89, 20200420.0, 'NAC6', 1930800320.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR llc', 2020.0, 2960630236.0, '2020-04-22', 20200422, 20200422, '2020-05-04', 'CAD', 'RV', 1.0, 10196.65, 20200424.0, 'CA10', 2960630236.0, 1, '2020-05-09', '0-15 days' ); /* INSERT QUERY NO: 2015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930623128.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 5469.0, 20200309.0, 'NAH4', 1930623128.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F systems', 2020.0, 2960627695.0, '2020-04-16', 20200416, 20200416, '2020-04-27', 'CAD', 'RV', 1.0, 1071.0, 20200417.0, 'CA10', 2960627695.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 2017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930637297.0, '2020-03-14', 20200311, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 22912.88, 20200314.0, 'NAH4', 1930637297.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930798065.0, '2020-04-18', 20200417, 20200418, '2020-06-22', 'USD', 'RV', 1.0, 19847.38, 20200418.0, 'NAGD', 1930798065.0, 1, '2020-06-15', 'early' ); /* INSERT QUERY NO: 2019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930829505.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 12770.01, 20200428.0, 'NAH4', 1930829505.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE associates', 2020.0, 1930577331.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 113205.95, 20200228.0, 'NAA8', 1930577331.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 2021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S systems', 2020.0, 1930684492.0, '2020-03-25', 20200321, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 42582.28, 20200325.0, 'NAA8', 1930684492.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930637016.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 6978.68, 20200311.0, 'NAH4', 1930637016.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930637758.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 280.94, 20200312.0, 'NAA8', 1930637758.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769369, 'DI associates', 2020.0, 1930669316.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 115076.3, 20200319.0, 'NAA8', 1930669316.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH associates', 2020.0, 1930659125.0, '2020-03-17', 20200316, 20200317, '2020-05-21', 'USD', 'RV', 1.0, 37865.27, 20200317.0, 'NAGD', 1930659125.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 2026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930639541.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 18932.86, 20200313.0, 'NAA8', 1930639541.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA ', 2020.0, 1930708485.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 1641.43, 20200326.0, 'NAA8', 1930708485.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S ', 2020.0, 1930723146.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 71.46, 20200330.0, 'NAA8', 1930723146.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930744818.0, '2020-04-07', 20200403, 20200407, '2020-04-27', 'USD', 'RV', 1.0, 8206.89, 20200407.0, 'NA84', 1930744818.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930724205.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 51675.91, 20200331.0, 'NAH4', 1930724205.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB in', 2020.0, 2960618649.0, '2020-03-08', 20200309, 20200308, '2020-03-19', 'CAD', 'RV', 1.0, 153359.1, 20200309.0, 'CA10', 2960618649.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 2032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F systems', 2020.0, 2960625736.0, '2020-03-31', 20200331, 20200331, '2020-04-10', 'CAD', 'RV', 1.0, 90.35, 20200331.0, 'CAX2', 2960625736.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 2033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930681332.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 7858.75, 20200322.0, 'NAH4', 1930681332.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO foundation', 2020.0, 2960620944.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 240400.5, 20200318.0, 'CA10', 2960620944.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 2035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930689710.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 44174.51, 20200323.0, 'NAH4', 1930689710.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200752302, 'KROGER corp', 2020.0, 1930684368.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 20213.76, 20200323.0, 'NAA8', 1930684368.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA us', 2020.0, 1930693437.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 1077.91, 20200325.0, 'NAA8', 1930693437.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792734, 'MDV/ us', 2020.0, 1930858338.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 69331.45, 20200505.0, 'NAA8', 1930858338.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN foundation', 2020.0, 1930600119.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 18966.0, 20200305.0, 'NAA8', 1930600119.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930672852.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 471.56, 20200319.0, 'NAH4', 1930672852.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER corporation', 2020.0, 1930819689.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1011.67, 20200424.0, 'NAA8', 1930819689.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK systems', 2020.0, 1930586649.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 55467.38, 20200302.0, 'NAA8', 1930586649.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930671394.0, '2020-03-23', 20200319, 20200323, '2020-03-23', 'USD', 'RV', 1.0, 1140.92, 20200323.0, 'NAX2', 1930671394.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 2044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930585115.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 11282.67, 20200302.0, 'NAH4', 1930585115.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 2045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S corp', 2020.0, 1930647065.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 130810.25, 20200313.0, 'NAA8', 1930647065.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778998, 'CE associates', 2020.0, 1930779773.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 107799.03, 20200412.0, 'NAA8', 1930779773.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 2047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930829063.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 132.72, 20200426.0, 'NAA8', 1930829063.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930601087.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 71047.8, 20200305.0, 'NAH4', 1930601087.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 2049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930669494.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 31785.42, 20200319.0, 'NAA8', 1930669494.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200458131, 'TIMES foundation', 2020.0, 1930759833.0, '2020-04-14', 20200407, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 3313.2, 20200414.0, 'NAA8', 1930759833.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 2051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930699101.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 14000.99, 20200326.0, 'NAH4', 1930699101.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930773902.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 5932.07, 20200410.0, 'NAH4', 1930773902.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 2053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F llc', 2020.0, 1930636490.0, '2020-03-13', 20200311, 20200313, '2020-03-13', 'USD', 'RV', 1.0, 22298.84, 20200313.0, 'NAX2', 1930636490.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 2054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930847230.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 15244.63, 20200430.0, 'NAH4', 1930847230.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 2055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930690391.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 27230.96, 20200323.0, 'NAH4', 1930690391.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA systems', 2020.0, 1930762181.0, '2020-04-08', 20200408, 20200408, '2020-04-11', 'USD', 'RV', 1.0, 8702.6, 20200401.0, 'NAM2', 1930762181.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930738500.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 8916.67, 20200403.0, 'NAA8', 1930738500.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 2058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG systems', 2020.0, 1930704347.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 48705.16, 20200326.0, 'NAA8', 1930704347.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC corp', 2020.0, 1930843322.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 22176.13, 20200430.0, 'NAA8', 1930843322.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE co', 2020.0, 2960626445.0, '2020-04-04', 20200404, 20200404, '2020-04-15', 'CAD', 'RV', 1.0, 69082.14, 20200405.0, 'CA10', 2960626445.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 2061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930582044.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 4341.39, 20200228.0, 'NAH4', 1930582044.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA in', 2020.0, 1930661091.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 71040.81, 20200317.0, 'NAA8', 1930661091.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL associates', 2020.0, 1930731622.0, '2020-04-07', 20200402, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 25534.7, 20200407.0, 'NAA8', 1930731622.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930684210.0, '2020-03-26', 20200321, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 8793.09, 20200326.0, 'NAAX', 1930684210.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930817638.0, '2020-04-23', 20200423, 20200423, '2020-04-11', 'USD', 'RV', 1.0, 6917.51, 20200401.0, 'NAM2', 1930817638.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930793947.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 1279.97, 20200416.0, 'NAH4', 1930793947.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200774000, 'RALEY ', 2020.0, 1930757569.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 89883.32, 20200407.0, 'NAA8', 1930757569.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930647039.0, '2020-03-16', 20200313, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 77249.7, 20200316.0, 'NAH4', 1930647039.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930829804.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 5283.98, 20200428.0, 'NAC6', 1930829804.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US us', 2020.0, 1930637196.0, '2020-03-12', 20200311, 20200312, '2020-04-01', 'USD', 'RV', 1.0, 44610.42, 20200312.0, 'NAD1', 1930637196.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 2071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930643608.0, '2020-03-18', 20200312, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 132.36, 20200318.0, 'NAGD', 1930643608.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET ', 2020.0, 1930650540.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 4624.12, 20200314.0, 'NAA8', 1930650540.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930778042.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 3851.03, 20200412.0, 'NAH4', 1930778042.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960624664.0, '2020-03-28', 20200328, 20200328, '2020-04-11', 'CAD', 'RV', 1.0, 137899.84, 20200401.0, 'CA10', 2960624664.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 2075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930819883.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 2489.09, 20200425.0, 'NAH4', 1930819883.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930619544.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 250.46, 20200308.0, 'NAH4', 1930619544.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930751308.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 72592.52, 20200405.0, 'NAA8', 1930751308.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 2078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930828671.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 15442.0, 20200426.0, 'NAH4', 1930828671.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930576268.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 4203.66, 20200227.0, 'NAH4', 1930576268.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930611533.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 12718.48, 20200309.0, 'NAH4', 1930611533.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC in', 2020.0, 2960619409.0, '2020-03-06', 20200306, 20200306, '2020-03-23', 'CAD', 'RV', 1.0, 9644.74, 20200313.0, 'CA10', 2960619409.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 2082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT co', 2020.0, 1930706384.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 18851.21, 20200326.0, 'NAA8', 1930706384.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930691869.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 23722.63, 20200325.0, 'NAA8', 1930691869.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930729874.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 3239.27, 20200401.0, 'NAH4', 1930729874.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK llc', 2020.0, 1930789532.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 89968.51, 20200415.0, 'NAA8', 1930789532.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930621657.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 15044.59, 20200309.0, 'NAH4', 1930621657.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930751008.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 15797.12, 20200406.0, 'NAA8', 1930751008.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL foundation', 2020.0, 1930659967.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 87287.5, 20200317.0, 'NAA8', 1930659967.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930732219.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 12198.02, 20200402.0, 'NAA8', 1930732219.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930719911.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 9212.24, 20200331.0, 'NAH4', 1930719911.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930745675.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 33629.53, 20200404.0, 'NAH4', 1930745675.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930789503.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 199.08, 20200415.0, 'NAA8', 1930789503.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930779456.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 578.81, 20200413.0, 'NAH4', 1930779456.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 2094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC associates', 2020.0, 1930763442.0, '2020-04-14', 20200408, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 7512.0, 20200414.0, 'NAA8', 1930763442.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 2095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930690533.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 41496.46, 20200323.0, 'NAU5', 1930690533.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930744969.0, '2020-04-04', 20200404, 20200404, '2020-04-24', 'USD', 'RV', 1.0, 920.37, 20200401.0, 'NAM4', 1930744969.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930739819.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 2321.7, 20200403.0, 'NAH4', 1930739819.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930801741.0, '2020-04-22', 20200419, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 80712.97, 20200422.0, 'NAAX', 1930801741.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930879452.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 17670.14, 20200509.0, 'NAH4', 1930879452.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 2100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C corp', 2020.0, 1930629950.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 6534.68, 20200312.0, 'NAA8', 1930629950.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930832093.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 88296.29, 20200429.0, 'NAH4', 1930832093.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 2102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930703619.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 3270.04, 20200326.0, 'NAH4', 1930703619.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE in', 2020.0, 1930586392.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 17938.57, 20200305.0, 'NAA8', 1930586392.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930861521.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 13678.56, 20200508.0, 'NAH4', 1930861521.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930684780.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 661.2, 20200322.0, 'NAA8', 1930684780.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT corp', 2020.0, 1930881390.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 36305.13, 20200508.0, 'NAU5', 1930881390.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 2107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA ', 2020.0, 1930822576.0, '2020-04-24', 20200424, 20200424, '2020-04-26', 'USD', 'RV', 1.0, 5511.23, 20200416.0, 'NAM2', 1930822576.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930833118.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 8095.38, 20200429.0, 'NAH4', 1930833118.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 2109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT associates', 2020.0, 1930843677.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 71682.19, 20200430.0, 'NAU5', 1930843677.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 2110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200307138, 'UTZ Q llc', 2020.0, 1930596138.0, '2020-03-05', 20200303, 20200305, '2020-04-04', 'USD', 'RV', 1.0, 58926.0, 20200305.0, 'NAD5', 1930596138.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930654111.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 7664.54, 20200316.0, 'NAA8', 1930654111.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ us', 2020.0, 1930840859.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 118307.75, 20200430.0, 'NAA8', 1930840859.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC llc', 2020.0, 1930690656.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 631.56, 20200316.0, 'NAM4', 1930690656.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU associates', 2020.0, 1930616875.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 63911.29, 20200306.0, 'NAA8', 1930616875.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200435191, 'C& associates', 2020.0, 1930729160.0, '2020-04-07', 20200401, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 17554.65, 20200407.0, 'NAC6', 1930729160.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930710580.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 105893.36, 20200328.0, 'NAA8', 1930710580.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930724811.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 776.58, 20200401.0, 'NAH4', 1930724811.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930622141.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 16072.84, 20200310.0, 'NAH4', 1930622141.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE associates', 2020.0, 1930770676.0, '2020-04-09', 20200409, 20200409, '2020-06-13', 'USD', 'RV', 1.0, 1987.9, 20200409.0, 'NAGD', 1930770676.0, 1, '2020-06-07', 'early' ); /* INSERT QUERY NO: 2120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930823147.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 22014.9, 20200426.0, 'NAH4', 1930823147.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930690841.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 3725.88, 20200324.0, 'NAH4', 1930690841.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B associates', 2020.0, 1930808829.0, '2020-04-27', 20200421, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 5248.72, 20200427.0, 'NAA8', 1930808829.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - co', 2020.0, 1930684020.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 91230.95, 20200321.0, 'NAA8', 1930684020.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930752484.0, '2020-04-02', 20200406, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 442.46, 20200402.0, 'NAA8', 1930752484.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO trust', 2020.0, 2960621578.0, '2020-03-18', 20200318, 20200318, '2020-03-30', 'CAD', 'RV', 1.0, 17084.13, 20200320.0, 'CA10', 2960621578.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 2126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930609610.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 396.68, 20200307.0, 'NAH4', 1930609610.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930684681.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 100305.37, 20200323.0, 'NAA8', 1930684681.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960617969.0, '2020-03-03', 20200303, 20200303, '2020-03-14', 'CAD', 'RV', 1.0, 23207.32, 20200304.0, 'CA10', 2960617969.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 2129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930682960.0, '2020-03-24', 20200321, 20200324, '2020-05-28', 'USD', 'RV', 1.0, 909.4, 20200324.0, 'NAGD', 1930682960.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 2130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930684710.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 13964.24, 20200323.0, 'NAH4', 1930684710.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW ', 2020.0, 1930861933.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 122290.15, 20200505.0, 'NAA8', 1930861933.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 2132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930798071.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 24038.4, 20200417.0, 'NAH4', 1930798071.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930730588.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 74410.8, 20200402.0, 'NAC6', 1930730588.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 2134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200743123, 'KROGER ', 2020.0, 1930854365.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 58664.19, 20200504.0, 'NAA8', 1930854365.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB ', 2020.0, 2960616778.0, '2020-03-03', 20200303, 20200303, '2020-03-14', 'CAD', 'RV', 1.0, 154593.76, 20200304.0, 'CA10', 2960616778.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 2136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930623696.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 2122.59, 20200310.0, 'NAH4', 1930623696.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO trust', 2020.0, 1930655796.0, '2020-03-19', 20200317, 20200319, '2020-04-08', 'USD', 'RV', 1.0, 12660.48, 20200319.0, 'NAD1', 1930655796.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET corp', 2020.0, 1930847127.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 4925.06, 20200501.0, 'NAA8', 1930847127.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930621699.0, '2020-03-10', 20200308, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 7446.6, 20200310.0, 'NAGD', 1930621699.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB corp', 2020.0, 2960624228.0, '2020-03-25', 20200325, 20200325, '2020-04-12', 'CAD', 'RV', 1.0, 141581.03, 20200402.0, 'CA10', 2960624228.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 2141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corporation', 2020.0, 1930879667.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 2914.2, 20200501.0, 'NAM4', 1930879667.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930826812.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 36626.96, 20200426.0, 'NAH4', 1930826812.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930685710.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 18662.09, 20200322.0, 'NAC6', 1930685710.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930636538.0, '2020-03-10', 20200311, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 58075.98, 20200310.0, 'NAU5', 1930636538.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930719994.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 19079.61, 20200401.0, 'NAH4', 1930719994.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930759215.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 15526.24, 20200407.0, 'NAA8', 1930759215.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200895843, 'US corporation', 2020.0, 1930837598.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 10737.65, 20200429.0, 'NAA8', 1930837598.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200407025, 'ALBERT us', 2020.0, 1930575496.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 6312.96, 20200228.0, 'NAA8', 1930575496.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 2149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S us', 2020.0, 1930808646.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 33258.2, 20200423.0, 'NAA8', 1930808646.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930705770.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 31966.59, 20200327.0, 'NAA8', 1930705770.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F systems', 2020.0, 1930606372.0, '2020-03-09', 20200305, 20200309, '2020-03-09', 'USD', 'RV', 1.0, 8433.98, 20200309.0, 'NAX2', 1930606372.0, 1, '2020-03-15', '0-15 days' ); /* INSERT QUERY NO: 2152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930789458.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 34320.28, 20200416.0, 'NAH4', 1930789458.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930587331.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 2903.37, 20200303.0, 'NAH4', 1930587331.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930784952.0, '2020-04-18', 20200414, 20200418, '2020-05-08', 'USD', 'RV', 1.0, 89855.56, 20200418.0, 'NA84', 1930784952.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT in', 2020.0, 1930673463.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 93909.8, 20200320.0, 'NAA8', 1930673463.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930642556.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 1898.2, 20200313.0, 'NAH4', 1930642556.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA in', 2020.0, 1930647501.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 36025.16, 20200313.0, 'NAA8', 1930647501.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT corporation', 2020.0, 1930676126.0, '2020-03-21', 20200320, 20200321, '2020-04-25', 'USD', 'RV', 1.0, 7752.0, 20200321.0, 'NAG2', 1930676126.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930817853.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 29389.21, 20200423.0, 'NAH4', 1930817853.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930731456.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 1496.87, 20200401.0, 'NAU5', 1930731456.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 2161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US associates', 2020.0, 1930756172.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 41687.79, 20200407.0, 'NAA8', 1930756172.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930566398.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 49001.86, 20200227.0, 'NAH4', 1930566398.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930686469.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 4088.45, 20200323.0, 'NAH4', 1930686469.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930683816.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 44037.92, 20200323.0, 'NAH4', 1930683816.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930639567.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 12456.77, 20200313.0, 'NAH4', 1930639567.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930675277.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 39386.96, 20200321.0, 'NAH4', 1930675277.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930592151.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 22978.5, 20200303.0, 'NAC6', 1930592151.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W llc', 2020.0, 1930692662.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 120364.65, 20200324.0, 'NAC6', 1930692662.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960617763.0, '2020-02-29', 20200229, 20200229, '2020-03-11', 'CAD', 'RV', 1.0, 32553.23, 20200301.0, 'CA10', 2960617763.0, 1, '2020-03-12', '0-15 days' ); /* INSERT QUERY NO: 2170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930724001.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 27068.82, 20200401.0, 'NAH4', 1930724001.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930745999.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 6832.47, 20200403.0, 'NAC6', 1930745999.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930716532.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 6540.07, 20200329.0, 'NAH4', 1930716532.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930673785.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 25546.1, 20200319.0, 'NAU5', 1930673785.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D corp', 2020.0, 1930645850.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 15232.14, 20200313.0, 'NAA8', 1930645850.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930828700.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 22570.88, 20200426.0, 'NAH4', 1930828700.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930845454.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 38064.69, 20200430.0, 'NAU5', 1930845454.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 2177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930670057.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 85853.73, 20200320.0, 'NAA8', 1930670057.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S trust', 2020.0, 1930632744.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 47566.06, 20200312.0, 'NAA8', 1930632744.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100000222, 'SMITHFIE co', 2020.0, 1930660244.0, '2020-03-20', 20200317, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 7710.26, 20200320.0, 'NAA8', 1930660244.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930768456.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 661.11, 20200409.0, 'NAH4', 1930768456.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930846908.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 11302.67, 20200502.0, 'NAH4', 1930846908.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930847105.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 588.34, 20200502.0, 'NAH4', 1930847105.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930874638.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 7664.54, 20200508.0, 'NAA8', 1930874638.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200754118, 'ARMY corp', 2020.0, 1930756689.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 49323.35, 20200407.0, 'NAA8', 1930756689.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930576398.0, '2020-02-28', 20200227, 20200228, '2020-05-03', 'USD', 'RV', 1.0, 2627.56, 20200228.0, 'NAGD', 1930576398.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930798037.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 410.89, 20200420.0, 'NAH4', 1930798037.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930704917.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 32779.89, 20200325.0, 'NAU5', 1930704917.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930625300.0, '2020-03-11', 20200309, 20200311, '2020-04-15', 'USD', 'RV', 1.0, 15103.2, 20200311.0, 'NAG2', 1930625300.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 2189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930670271.0, '2020-03-21', 20200319, 20200321, '2020-05-25', 'USD', 'RV', 1.0, 8231.52, 20200321.0, 'NAGD', 1930670271.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 2190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930651429.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 15393.01, 20200316.0, 'NAH4', 1930651429.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930732612.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 11113.84, 20200402.0, 'NAH4', 1930732612.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930685040.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 13322.56, 20200322.0, 'NAH4', 1930685040.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930714283.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 42110.59, 20200328.0, 'NAH4', 1930714283.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930832032.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 105538.11, 20200428.0, 'NAA8', 1930832032.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930635616.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 14458.5, 20200312.0, 'NAAX', 1930635616.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930659356.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 82170.07, 20200317.0, 'NAU5', 1930659356.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780825, 'SYSCO FO trust', 2020.0, 1930638101.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 13970.57, 20200311.0, 'NAA8', 1930638101.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER ', 2020.0, 1930708925.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 12123.24, 20200327.0, 'NAA8', 1930708925.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930675509.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 23098.52, 20200319.0, 'NAA8', 1930675509.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 2200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930635365.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 26829.15, 20200311.0, 'NAH4', 1930635365.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200486270, 'BAR trust', 2020.0, 1930809152.0, '2020-04-28', 20200422, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 4837.85, 20200428.0, 'NAA8', 1930809152.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930677231.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 69747.73, 20200323.0, 'NAH4', 1930677231.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 2203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930605053.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 6532.6, 20200305.0, 'NAH4', 1930605053.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930767603.0, '2020-04-11', 20200408, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 58935.57, 20200411.0, 'NAH4', 1930767603.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930794298.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 68006.93, 20200417.0, 'NAAX', 1930794298.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S corporation', 2020.0, 1930757141.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 55415.9, 20200407.0, 'NAA8', 1930757141.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078854, 'MC A systems', 2020.0, 1930690084.0, '2020-03-24', 20200324, 20200324, '2020-05-28', 'USD', 'RV', 1.0, 85.65, 20200324.0, 'NAGD', 1930690084.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 2208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930659328.0, '2020-03-19', 20200316, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 13174.9, 20200319.0, 'NAH4', 1930659328.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930631001.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 15501.23, 20200311.0, 'NAH4', 1930631001.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727272, 'BROOKS systems', 2020.0, 1930759665.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 1445.39, 20200407.0, 'NAA8', 1930759665.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930637240.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 657.77, 20200311.0, 'NAA8', 1930637240.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930808848.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 5646.75, 20200422.0, 'NAH4', 1930808848.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB in', 2020.0, 2960622831.0, '2020-03-20', 20200320, 20200320, '2020-04-07', 'CAD', 'RV', 1.0, 156945.2, 20200328.0, 'CA10', 2960622831.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 2214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200096390, 'D ', 2020.0, 1930594071.0, '2020-03-13', 20200303, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 14478.03, 20200313.0, 'NAA8', 1930594071.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG corporation', 2020.0, 1930756451.0, '2020-04-06', 20200407, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 91101.84, 20200406.0, 'NAA8', 1930756451.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930580042.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 532.49, 20200229.0, 'NAA8', 1930580042.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 2217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930629360.0, '2020-03-09', 20200310, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 213.45, 20200309.0, 'NAA8', 1930629360.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER us', 2020.0, 1930592491.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 16592.17, 20200304.0, 'NAA8', 1930592491.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930803679.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 39756.31, 20200421.0, 'NAH4', 1930803679.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930835867.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 6633.12, 20200430.0, 'NAA8', 1930835867.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103400, 'FOST llc', 2020.0, 1991841334.0, '2020-03-31', 20200327, 20200331, '2020-04-30', 'USD', 'RV', 1.0, 2362.85, 20200331.0, 'NAVE', 1991841334.0, 1, '2020-05-05', '0-15 days' ); /* INSERT QUERY NO: 2222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960628319.0, '2020-04-13', 20200413, 20200413, '2020-04-23', 'CAD', 'RV', 1.0, 28813.49, 20200413.0, 'CA10', 2960628319.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 2223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930829031.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 142.89, 20200427.0, 'NAA8', 1930829031.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930684885.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 5602.27, 20200323.0, 'NAC6', 1930684885.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO systems', 2020.0, 2960616073.0, '2020-03-01', 20200301, 20200301, '2020-03-18', 'CAD', 'RV', 1.0, 157968.13, 20200308.0, 'CA10', 2960616073.0, 1, '2020-03-23', '0-15 days' ); /* INSERT QUERY NO: 2226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930757488.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 944.64, 20200409.0, 'NAA8', 1930757488.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930756822.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 63212.16, 20200408.0, 'NAA8', 1930756822.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER co', 2020.0, 1930739545.0, '2020-04-09', 20200403, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 31173.16, 20200409.0, 'NAA8', 1930739545.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930708934.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 92973.05, 20200328.0, 'NAA8', 1930708934.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930719225.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 6698.72, 20200331.0, 'NAH4', 1930719225.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930797006.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 399.24, 20200417.0, 'NAH4', 1930797006.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104440, 'SO co', 2020.0, 2960629687.0, '2020-04-22', 20200422, 20200422, '2020-05-02', 'CAD', 'RV', 1.0, 54100.19, 20200422.0, 'CA10', 2960629687.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 2233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930724379.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 36419.45, 20200401.0, 'NAH4', 1930724379.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930646769.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 21901.51, 20200314.0, 'NAH4', 1930646769.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100032505, 'KEHE associates', 2020.0, 1930645997.0, '2020-03-17', 20200312, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 3054.07, 20200317.0, 'NAA8', 1930645997.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930683392.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 105044.18, 20200321.0, 'NAA8', 1930683392.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M us', 2020.0, 2960629947.0, '2020-04-21', 20200421, 20200421, '2020-05-02', 'CAD', 'RV', 1.0, 55334.34, 20200422.0, 'CA10', 2960629947.0, 1, '2020-05-11', '0-15 days' ); /* INSERT QUERY NO: 2238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA foundation', 2020.0, 1930692737.0, '2020-03-24', 20200324, 20200324, '2020-05-28', 'USD', 'RV', 1.0, 8125.78, 20200324.0, 'NAGD', 1930692737.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 2239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930810792.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 14647.94, 20200423.0, 'NAAX', 1930810792.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB ', 2020.0, 2960630218.0, '2020-04-21', 20200421, 20200421, '2020-05-03', 'CAD', 'RV', 1.0, 57555.9, 20200423.0, 'CA10', 2960630218.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 2241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH trust', 2020.0, 1930621234.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 175033.38, 20200309.0, 'NAA8', 1930621234.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ llc', 2020.0, 1930802803.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 36924.74, 20200420.0, 'NAA8', 1930802803.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S ', 2020.0, 1930659837.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 132.37, 20200317.0, 'NAA8', 1930659837.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930823056.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 48706.82, 20200425.0, 'NAH4', 1930823056.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930792919.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 39600.58, 20200416.0, 'NAH4', 1930792919.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER corporation', 2020.0, 1930580732.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 47821.15, 20200229.0, 'NAA8', 1930580732.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 2247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930646307.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 102.37, 20200313.0, 'NAH4', 1930646307.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930642917.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3850.44, 20200313.0, 'NAH4', 1930642917.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930686525.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 3532.21, 20200322.0, 'NAU5', 1930686525.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU associates', 2020.0, 1930616875.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 63911.29, 20200306.0, 'NAA8', 1930616875.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE corporation', 2020.0, 1930727069.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 249.58, 20200401.0, 'NAA8', 1930727069.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104475, 'FOC corp', 2020.0, 2960622505.0, '2020-03-19', 20200319, 20200319, '2020-04-06', 'CAD', 'RV', 1.0, 3004.76, 20200327.0, 'CA10', 2960622505.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 2253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU foundation', 2020.0, 1930641586.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 41837.91, 20200312.0, 'NAC6', 1930641586.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100024077, 'GLOBAL co', 2020.0, 1991841255.0, '2020-03-29', 20200325, 20200329, '2020-05-13', 'USD', 'RV', 1.0, 18304.42, 20200329.0, 'NAVF', 1991841255.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 2255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930647145.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 11252.54, 20200313.0, 'NAH4', 1930647145.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG foundation', 2020.0, 1930661393.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 41964.08, 20200317.0, 'NAA8', 1930661393.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F associates', 2020.0, 1930654835.0, '2020-03-17', 20200315, 20200317, '2020-03-17', 'USD', 'RV', 1.0, 15422.68, 20200317.0, 'NAX2', 1930654835.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 2258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH foundation', 2020.0, 1930670542.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 8721.26, 20200319.0, 'NAA8', 1930670542.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930710530.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 313.61, 20200327.0, 'NAH4', 1930710530.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763489, 'GENERAL trust', 2020.0, 1930834211.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 110536.26, 20200429.0, 'NAA8', 1930834211.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M associates', 2020.0, 2960617800.0, '2020-02-28', 20200229, 20200228, '2020-03-11', 'CAD', 'RV', 1.0, 74172.02, 20200301.0, 'CA10', 2960617800.0, 1, '2020-03-12', '0-15 days' ); /* INSERT QUERY NO: 2262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930623335.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 54595.18, 20200308.0, 'NAU5', 1930623335.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100004536, 'BAS corporation', 2020.0, 1930703928.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 91922.58, 20200326.0, 'NAA8', 1930703928.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930800294.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 15916.28, 20200419.0, 'NAH4', 1930800294.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS corporation', 2020.0, 1930875515.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 54102.0, 20200507.0, 'NAA8', 1930875515.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA us', 2020.0, 1930683400.0, '2020-03-25', 20200321, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 19825.92, 20200325.0, 'NAA8', 1930683400.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930856590.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 886.68, 20200505.0, 'NAA8', 1930856590.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 2268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930818420.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 7906.08, 20200423.0, 'NAA8', 1930818420.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR in', 2020.0, 1930585879.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 15225.76, 20200303.0, 'NAA8', 1930585879.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930675135.0, '2020-03-20', 20200320, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 4234.47, 20200320.0, 'NAGD', 1930675135.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY trust', 2020.0, 1930637970.0, '2020-03-12', 20200311, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 17678.76, 20200312.0, 'NAGD', 1930637970.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 2272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ us', 2020.0, 1930800840.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 30779.43, 20200419.0, 'NAA8', 1930800840.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 2273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031483, 'OCEAN FA us', 2020.0, 1930653799.0, '2020-03-18', 20200315, 20200318, '2020-04-07', 'USD', 'RV', 1.0, 5807.2, 20200318.0, 'NAD1', 1930653799.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930882834.0, '2020-05-08', 20200509, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 32628.86, 20200508.0, 'NAH4', 1930882834.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930585425.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 20900.99, 20200303.0, 'NAH4', 1930585425.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930714385.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 30800.99, 20200328.0, 'NAH4', 1930714385.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930620257.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 32.36, 20200308.0, 'NAH4', 1930620257.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE ', 2020.0, 1930832386.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 52980.8, 20200427.0, 'NAA8', 1930832386.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140103335, 'PARAM us', 2020.0, 1991840746.0, '2020-03-16', 20200312, 20200316, '2020-04-15', 'USD', 'RV', 1.0, 33064.89, 20200316.0, 'NAVE', 1991840746.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 2280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930849840.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 48488.6, 20200504.0, 'NAA8', 1930849840.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M associates', 2020.0, 1930605947.0, '2020-03-06', 20200305, 20200306, '2020-04-15', 'USD', 'RV', 1.0, 16437.82, 20200415.0, 'NACG', 1930605947.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 2282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA corporation', 2020.0, 1930745794.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 49391.06, 20200403.0, 'NAA8', 1930745794.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 2283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930793936.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 99.54, 20200416.0, 'NAA8', 1930793936.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 2284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200776463, 'KROGE associates', 2020.0, 1930862576.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 39209.99, 20200506.0, 'NAA8', 1930862576.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930805233.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 14979.35, 20200421.0, 'NAU5', 1930805233.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 2286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200494102, 'MCCA co', 2020.0, 1930597435.0, '2020-03-06', 20200303, 20200306, '2020-03-22', 'USD', 'RV', 1.0, 23952.0, 20200306.0, 'C106', 1930597435.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930677183.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 9719.47, 20200322.0, 'NAH4', 1930677183.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930654990.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 15636.41, 20200316.0, 'NAH4', 1930654990.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI corporation', 2020.0, 1930725085.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 113740.77, 20200331.0, 'NAA8', 1930725085.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 2290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930589356.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 14401.29, 20200304.0, 'NAH4', 1930589356.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 2291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930621087.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 129.99, 20200309.0, 'NAH4', 1930621087.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930845842.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 14301.37, 20200502.0, 'NAH4', 1930845842.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930581158.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 422.8, 20200228.0, 'NAH4', 1930581158.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930797901.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 32760.54, 20200418.0, 'NAH4', 1930797901.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930552350.0, '2020-02-27', 20200221, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 3983.54, 20200227.0, 'NAA8', 1930552350.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 2296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930682121.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 15332.88, 20200321.0, 'NAH4', 1930682121.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930744331.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 93489.2, 20200404.0, 'NAA8', 1930744331.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930705740.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 12668.17, 20200328.0, 'NAH4', 1930705740.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC systems', 2020.0, 1930778394.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 13629.85, 20200411.0, 'NAA8', 1930778394.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930635459.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 6122.4, 20200312.0, 'NAH4', 1930635459.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930618702.0, '2020-03-07', 20200307, 20200307, '2020-03-11', 'USD', 'RV', 1.0, 14995.16, 20200301.0, 'NAM2', 1930618702.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 2302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930593054.0, '2020-03-03', 20200303, 20200303, '2020-05-07', 'USD', 'RV', 1.0, 34147.24, 20200303.0, 'NAGD', 1930593054.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT corp', 2020.0, 1930725088.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 19631.29, 20200401.0, 'NAA8', 1930725088.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 2304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727272, 'BROOKS in', 2020.0, 1930792314.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 30806.11, 20200415.0, 'NAA8', 1930792314.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930803205.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 8549.97, 20200420.0, 'NAH4', 1930803205.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M systems', 2020.0, 2960617746.0, '2020-02-28', 20200228, 20200228, '2020-03-10', 'CAD', 'RV', 1.0, 2069.77, 20200229.0, 'CA10', 2960617746.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 2307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC co', 2020.0, 1930674071.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 228.72, 20200316.0, 'NAM4', 1930674071.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930788416.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 5257.61, 20200415.0, 'NAH4', 1930788416.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200346918, 'CULINAR in', 2020.0, 1930844579.0, '2020-04-30', 20200430, 20200430, '2020-05-10', 'USD', 'RV', 1.0, 46399.32, 20200430.0, 'NA10', 1930844579.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200019542, 'ABC B co', 2020.0, 1930788552.0, '2020-04-20', 20200415, 20200420, '2020-04-30', 'USD', 'RV', 1.0, 16135.2, 20200420.0, 'NA10', 1930788552.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930755184.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 7690.08, 20200406.0, 'NAU5', 1930755184.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 2312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960631502.0, '2020-04-27', 20200427, 20200427, '2020-05-07', 'CAD', 'RV', 1.0, 106271.06, 20200427.0, 'CA10', 2960631502.0, 1, '2020-05-11', '0-15 days' ); /* INSERT QUERY NO: 2313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100014724, 'DEC ', 2020.0, 1930809811.0, '2020-04-21', 20200421, 20200421, '2020-04-26', 'USD', 'RV', 1.0, 137366.58, 20200416.0, 'NAM2', 1930809811.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930724124.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 40303.68, 20200401.0, 'NAH4', 1930724124.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA llc', 2020.0, 1930698704.0, '2020-03-24', 20200325, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 24248.67, 20200324.0, 'NAA8', 1930698704.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930645311.0, '2020-03-13', 20200312, 20200313, '2020-04-17', 'USD', 'RV', 1.0, 7584.0, 20200313.0, 'NAG2', 1930645311.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930610897.0, '2020-03-10', 20200306, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 73169.97, 20200310.0, 'NAH4', 1930610897.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR ', 2020.0, 1930660788.0, '2020-03-18', 20200317, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 4364.47, 20200318.0, 'NAGD', 1930660788.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930845835.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 292.94, 20200502.0, 'NAH4', 1930845835.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930774361.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 671.54, 20200412.0, 'NAH4', 1930774361.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930604583.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 40497.6, 20200305.0, 'NAH4', 1930604583.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930789587.0, '2020-04-22', 20200415, 20200422, '2020-06-26', 'USD', 'RV', 1.0, 24192.0, 20200422.0, 'NAGD', 1930789587.0, 1, '2020-06-21', 'early' ); /* INSERT QUERY NO: 2323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930723466.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 798.08, 20200331.0, 'NAH4', 1930723466.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F in', 2020.0, 1930661034.0, '2020-03-19', 20200317, 20200319, '2020-03-19', 'USD', 'RV', 1.0, 14943.02, 20200319.0, 'NAX2', 1930661034.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 2325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930827390.0, '2020-04-28', 20200425, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 2718.03, 20200428.0, 'NAH4', 1930827390.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930775774.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 20017.73, 20200411.0, 'NAH4', 1930775774.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779719, 'FOOD 4 us', 2020.0, 1930772080.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 17224.98, 20200410.0, 'NAA8', 1930772080.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930773986.0, '2020-04-13', 20200410, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 131419.42, 20200413.0, 'NAA8', 1930773986.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930647847.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 15927.04, 20200314.0, 'NAH4', 1930647847.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M associates', 2020.0, 2960631376.0, '2020-04-29', 20200429, 20200429, '2020-05-17', 'CAD', 'RV', 1.0, 184068.3, 20200507.0, 'CA10', 2960631376.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 2331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930654525.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 11808.44, 20200315.0, 'NAA8', 1930654525.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799538, 'UNITE llc', 2020.0, 1930828561.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 52381.73, 20200426.0, 'NAA8', 1930828561.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930638089.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 3703.19, 20200312.0, 'NAH4', 1930638089.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930813125.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 467.4, 20200416.0, 'NAM4', 1930813125.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930629547.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 106.67, 20200310.0, 'NAH4', 1930629547.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930758216.0, '2020-04-06', 20200407, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 60372.06, 20200406.0, 'NAA8', 1930758216.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA foundation', 2020.0, 1930700291.0, '2020-03-26', 20200326, 20200326, '2020-04-08', 'USD', 'RV', 1.0, 569.64, 20200316.0, 'NAM4', 1930700291.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930720269.0, '2020-03-31', 20200330, 20200331, '2020-05-15', 'USD', 'RV', 1.0, 105811.04, 20200331.0, 'NAWP', 1930720269.0, 1, '2020-05-16', '0-15 days' ); /* INSERT QUERY NO: 2339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930592405.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 22864.27, 20200303.0, 'NAA8', 1930592405.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930567336.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 76784.54, 20200227.0, 'NAA8', 1930567336.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 2341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930652141.0, '2020-03-15', 20200314, 20200315, '2020-05-19', 'USD', 'RV', 1.0, 889.63, 20200315.0, 'NAGD', 1930652141.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 2342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930853057.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 52006.33, 20200505.0, 'NAH4', 1930853057.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR systems', 2020.0, 1930671612.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 151709.92, 20200321.0, 'NAA8', 1930671612.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930831345.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 8843.38, 20200429.0, 'NAAX', 1930831345.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930773671.0, '2020-04-08', 20200410, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 63.46, 20200408.0, 'NAA8', 1930773671.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200742791, 'QUI systems', 2020.0, 1930855572.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 22845.73, 20200507.0, 'NAA8', 1930855572.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 2347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR systems', 2020.0, 1930584601.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 67313.49, 20200302.0, 'NAA8', 1930584601.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930748619.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 98898.56, 20200404.0, 'NAA8', 1930748619.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 2349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F systems', 2020.0, 1930667591.0, '2020-03-22', 20200318, 20200322, '2020-03-22', 'USD', 'RV', 1.0, 10261.6, 20200322.0, 'NAX2', 1930667591.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 2350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930584824.0, '2020-03-03', 20200229, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 29800.89, 20200303.0, 'NAAX', 1930584824.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S systems', 2020.0, 1930801439.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 11563.76, 20200421.0, 'NAA8', 1930801439.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930580750.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 5191.15, 20200228.0, 'NAH4', 1930580750.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930581546.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 47995.39, 20200301.0, 'NAC6', 1930581546.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930711441.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 48686.4, 20200328.0, 'NAA8', 1930711441.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC systems', 2020.0, 1930841895.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 18528.89, 20200501.0, 'NAA8', 1930841895.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930629633.0, '2020-03-09', 20200310, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 67758.08, 20200309.0, 'NAU5', 1930629633.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930815993.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 99.54, 20200423.0, 'NAA8', 1930815993.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M corp', 2020.0, 2960627053.0, '2020-04-08', 20200408, 20200408, '2020-04-18', 'CAD', 'RV', 1.0, 4684.17, 20200408.0, 'CA10', 2960627053.0, 1, '2020-04-26', '0-15 days' ); /* INSERT QUERY NO: 2359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930800662.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 1898.2, 20200419.0, 'NAH4', 1930800662.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930855333.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 3796.4, 20200504.0, 'NAH4', 1930855333.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930780345.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 49973.03, 20200414.0, 'NAC6', 1930780345.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 2362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930655626.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 443.13, 20200316.0, 'NAA8', 1930655626.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F trust', 2020.0, 1930598816.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 37270.12, 20200303.0, 'NAA8', 1930598816.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'HEINZ corporation', 2020.0, 1991841234.0, '2020-03-21', 20200317, 20200321, '2020-05-05', 'USD', 'RV', 1.0, 6396.03, 20200321.0, 'NAVF', 1991841234.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 2365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930783382.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 24310.72, 20200414.0, 'NAC6', 1930783382.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 2366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930646517.0, '2020-03-15', 20200312, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 27415.92, 20200315.0, 'NAH4', 1930646517.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960628085.0, '2020-04-13', 20200413, 20200413, '2020-05-03', 'CAD', 'RV', 1.0, 30512.37, 20200423.0, 'CA10', 2960628085.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 2368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO in', 2020.0, 2960616533.0, '2020-02-27', 20200227, 20200227, '2020-03-09', 'CAD', 'RV', 1.0, 12371.82, 20200228.0, 'CA10', 2960616533.0, 1, '2020-03-13', '0-15 days' ); /* INSERT QUERY NO: 2369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU associates', 2020.0, 1930693933.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 35898.24, 20200325.0, 'NAA8', 1930693933.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ ', 2020.0, 1930571597.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 105067.31, 20200227.0, 'NAA8', 1930571597.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 2371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA foundation', 2020.0, 1930689879.0, '2020-03-24', 20200324, 20200324, '2020-03-26', 'USD', 'RV', 1.0, 8690.04, 20200316.0, 'NAM2', 1930689879.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA systems', 2020.0, 1930700618.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 8523.3, 20200326.0, 'NAA8', 1930700618.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT co', 2020.0, 1930710610.0, '2020-03-28', 20200327, 20200328, '2020-05-02', 'USD', 'RV', 1.0, 16934.4, 20200328.0, 'NAG2', 1930710610.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930621922.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 22110.81, 20200308.0, 'NAH4', 1930621922.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930655022.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 943.12, 20200316.0, 'NAH4', 1930655022.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE ', 2020.0, 1930755087.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 19948.44, 20200406.0, 'NAA8', 1930755087.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930691324.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 25607.02, 20200324.0, 'NAH4', 1930691324.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC corp', 2020.0, 2960628044.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'CAD', 'RV', 1.0, 2745.42, 20200416.0, 'CA10', 2960628044.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 2379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930710015.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 776.18, 20200327.0, 'NAA8', 1930710015.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930773022.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 1046.4, 20200401.0, 'NAM4', 1930773022.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106224, 'MEILLE foundation', 2020.0, 2960625045.0, '2020-03-30', 20200330, 20200330, '2020-04-11', 'CAD', 'RV', 1.0, 12618.0, 20200401.0, 'CA10', 2960625045.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 2382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE ', 2020.0, 1930792940.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 40992.09, 20200415.0, 'NAA8', 1930792940.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 2383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corporation', 2020.0, 2960617914.0, '2020-03-01', 20200301, 20200301, '2020-03-18', 'CAD', 'RV', 1.0, 123403.26, 20200308.0, 'CA10', 2960617914.0, 1, '2020-03-23', '0-15 days' ); /* INSERT QUERY NO: 2384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA foundation', 2020.0, 1930703315.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 42641.39, 20200325.0, 'NAA8', 1930703315.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930774547.0, '2020-04-08', 20200410, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 1306.37, 20200408.0, 'NAA8', 1930774547.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG associates', 2020.0, 1930806224.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 48916.08, 20200420.0, 'NAA8', 1930806224.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC ', 2020.0, 1930765354.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 6191.23, 20200401.0, 'NAM4', 1930765354.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER in', 2020.0, 1930645558.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 87659.43, 20200312.0, 'NAA8', 1930645558.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930883137.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 817.76, 20200510.0, 'NAH4', 1930883137.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 2390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930725488.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 8.0, 20200401.0, 'NAH4', 1930725488.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930652018.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 20972.54, 20200316.0, 'NAH4', 1930652018.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930746961.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 7861.66, 20200406.0, 'NAH4', 1930746961.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930797412.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 53505.56, 20200417.0, 'NAH4', 1930797412.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930598419.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 29848.28, 20200304.0, 'NAH4', 1930598419.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 2395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930848692.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 91256.52, 20200502.0, 'NAAX', 1930848692.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 2396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930752466.0, '2020-04-03', 20200406, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 190.38, 20200403.0, 'NAA8', 1930752466.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 2397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F us', 2020.0, 1930573586.0, '2020-02-28', 20200226, 20200228, '2020-02-28', 'USD', 'RV', 1.0, 12332.28, 20200228.0, 'NAX2', 1930573586.0, 1, '2020-03-03', '0-15 days' ); /* INSERT QUERY NO: 2398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930693586.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 25074.38, 20200325.0, 'NAH4', 1930693586.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770677, 'KRAS associates', 2020.0, 1930594365.0, '2020-03-04', 20200303, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 39726.53, 20200304.0, 'NAGD', 1930594365.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER llc', 2020.0, 1930787779.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 73544.23, 20200415.0, 'NAA8', 1930787779.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200684768, 'TOTA corporation', 2020.0, 1930795103.0, '2020-04-16', 20200416, 20200416, '2020-05-16', 'USD', 'RV', 1.0, 19880.2, 20200416.0, 'NAD5', 1930795103.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 2402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200833713, 'JETRO trust', 2020.0, 1930603008.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 883.6, 20200304.0, 'NAA8', 1930603008.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200472708, 'WEST P corporation', 2020.0, 1930713707.0, '2020-03-27', 20200327, 20200327, '2020-04-06', 'USD', 'RV', 1.0, 24653.71, 20200327.0, 'NA10', 1930713707.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930883834.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 66383.87, 20200510.0, 'NAH4', 1930883834.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 2405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930647535.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 41102.17, 20200314.0, 'NAH4', 1930647535.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930763937.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1615.14, 20200409.0, 'NAH4', 1930763937.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 2407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930792321.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 285.06, 20200416.0, 'NAA8', 1930792321.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 2408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930652825.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 6447.78, 20200315.0, 'NAH4', 1930652825.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930659043.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 64031.43, 20200316.0, 'NAA8', 1930659043.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930660752.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 61859.08, 20200317.0, 'NAH4', 1930660752.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930785010.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 10344.61, 20200415.0, 'NAH4', 1930785010.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- ', 2020.0, 2960620076.0, '2020-03-17', 20200317, 20200317, '2020-03-27', 'CAD', 'RV', 1.0, 47237.1, 20200317.0, 'CA10', 2960620076.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 2413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930685937.0, '2020-03-24', 20200322, 20200324, '2020-05-28', 'USD', 'RV', 1.0, 6601.6, 20200324.0, 'NAGD', 1930685937.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 2414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930586759.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 351.69, 20200303.0, 'NAH4', 1930586759.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO ', 2020.0, 2960623802.0, '2020-03-24', 20200324, 20200324, '2020-04-03', 'CAD', 'RV', 1.0, 9210.55, 20200324.0, 'CA10', 2960623802.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 2416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930779581.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 8921.55, 20200413.0, 'NAH4', 1930779581.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 2417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930878060.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 45285.68, 20200509.0, 'NAH4', 1930878060.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 2418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC corp', 2020.0, 1930781217.0, '2020-04-18', 20200413, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 11196.0, 20200418.0, 'NAA8', 1930781217.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 2419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200799367, 'MCL in', 2020.0, 1930825552.0, '2020-04-24', 20200424, 20200424, '2020-03-14', 'USD', 'RV', 1.0, 22417.8, 20200228.0, 'NAA8', 1930825552.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 2420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930652936.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 52082.87, 20200315.0, 'NAH4', 1930652936.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930600146.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 1897.67, 20200301.0, 'NAM4', 1930600146.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT corporation', 2020.0, 1930581220.0, '2020-02-28', 20200227, 20200228, '2020-04-03', 'USD', 'RV', 1.0, 14509.06, 20200228.0, 'NAG2', 1930581220.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930657292.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 1545.98, 20200317.0, 'NAH4', 1930657292.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930847103.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 130.81, 20200502.0, 'NAH4', 1930847103.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930830416.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 16326.1, 20200429.0, 'NAA8', 1930830416.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE associates', 2020.0, 1930664492.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 39328.69, 20200318.0, 'NAA8', 1930664492.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 2427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930691552.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 7280.35, 20200325.0, 'NAH4', 1930691552.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR trust', 2020.0, 2960625514.0, '2020-03-31', 20200331, 20200331, '2020-04-11', 'CAD', 'RV', 1.0, 97345.89, 20200401.0, 'CA10', 2960625514.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 2429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930578874.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 60493.1, 20200227.0, 'NAH4', 1930578874.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL trust', 2020.0, 1930850194.0, '2020-05-01', 20200502, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 111395.96, 20200501.0, 'NAA8', 1930850194.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU trust', 2020.0, 1930764488.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 118657.42, 20200409.0, 'NAA8', 1930764488.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 2432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER foundation', 2020.0, 1930747662.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 22347.2, 20200406.0, 'NAA8', 1930747662.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930682641.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 22050.3, 20200323.0, 'NAC6', 1930682641.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S trust', 2020.0, 1930773710.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 29343.97, 20200412.0, 'NAA8', 1930773710.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US ', 2020.0, 1930758236.0, '2020-04-14', 20200407, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 4426.58, 20200414.0, 'NAA8', 1930758236.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER corp', 2020.0, 1930751337.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 20559.15, 20200406.0, 'NAA8', 1930751337.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792277, 'SOUTH systems', 2020.0, 1930831142.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 2204.17, 20200427.0, 'NAA8', 1930831142.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930738577.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 4965.89, 20200403.0, 'NAH4', 1930738577.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930752194.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 39168.09, 20200406.0, 'NAH4', 1930752194.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 2440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT co', 2020.0, 1930673781.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 10720.17, 20200319.0, 'NAA8', 1930673781.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930682985.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 7824.09, 20200321.0, 'NAA8', 1930682985.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930823819.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 127871.24, 20200425.0, 'NAA8', 1930823819.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930675428.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 64382.38, 20200320.0, 'NAH4', 1930675428.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930882284.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 3403.8, 20200510.0, 'NAH4', 1930882284.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 2445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930627678.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 2568.3, 20200309.0, 'NAAX', 1930627678.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930654846.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 62.62, 20200316.0, 'NAA8', 1930654846.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930635609.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 7438.3, 20200311.0, 'NAH4', 1930635609.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE us', 2020.0, 1930858086.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 34449.63, 20200506.0, 'NAA8', 1930858086.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930862821.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 16497.1, 20200508.0, 'NAH4', 1930862821.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930829358.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 46436.19, 20200426.0, 'NAH4', 1930829358.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD in', 2020.0, 1930686873.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 19742.24, 20200324.0, 'NAA8', 1930686873.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930631567.0, '2020-03-10', 20200310, 20200310, '2020-04-13', 'USD', 'RV', 1.0, 3516.27, 20200310.0, 'NAAW', 1930631567.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ llc', 2020.0, 1930729342.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 75618.59, 20200401.0, 'NAA8', 1930729342.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930780818.0, '2020-04-11', 20200413, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 2686.65, 20200411.0, 'NAA8', 1930780818.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 2455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT foundation', 2020.0, 1930709031.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 7901.26, 20200327.0, 'NAU5', 1930709031.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 2456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200789077, 'US ', 2020.0, 1930822031.0, '2020-04-30', 20200423, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 7391.25, 20200430.0, 'NAA8', 1930822031.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 2457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO associates', 2020.0, 2960617975.0, '2020-03-03', 20200303, 20200303, '2020-03-14', 'CAD', 'RV', 1.0, 11006.92, 20200304.0, 'CA10', 2960617975.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 2458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200767729, 'PERFOR in', 2020.0, 1930652280.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21362.88, 20200316.0, 'NAA8', 1930652280.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 2459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930571314.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 8536.81, 20200227.0, 'NAH4', 1930571314.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930793472.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 561.59, 20200416.0, 'NAA8', 1930793472.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 2461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930789638.0, '2020-04-18', 20200415, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 31059.23, 20200418.0, 'NAH4', 1930789638.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930571266.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 10257.72, 20200227.0, 'NAH4', 1930571266.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU foundation', 2020.0, 1930817353.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 38691.5, 20200423.0, 'NAC6', 1930817353.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930704098.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 77463.7, 20200326.0, 'NAA8', 1930704098.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK ', 2020.0, 1930843945.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 30737.32, 20200430.0, 'NAA8', 1930843945.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930714840.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 26842.15, 20200329.0, 'NAH4', 1930714840.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930787199.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 8949.7, 20200415.0, 'NAH4', 1930787199.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930692536.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 3703.19, 20200325.0, 'NAH4', 1930692536.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE co', 2020.0, 1930855044.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 42106.84, 20200505.0, 'NAA8', 1930855044.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930704637.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 6943.97, 20200327.0, 'NAH4', 1930704637.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200725421, 'BEN trust', 2020.0, 1930601039.0, '2020-03-11', 20200304, 20200311, '2020-04-12', 'USD', 'RV', 1.0, 12622.44, 20200311.0, 'NA32', 1930601039.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763489, 'GENERAL in', 2020.0, 1930719249.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 19881.92, 20200401.0, 'NAA8', 1930719249.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930580308.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 15634.49, 20200228.0, 'NAA8', 1930580308.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 2474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200458131, 'TIMES associates', 2020.0, 1930676769.0, '2020-03-27', 20200320, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 7016.56, 20200327.0, 'NAA8', 1930676769.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - corp', 2020.0, 1930822420.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 25460.19, 20200423.0, 'NAA8', 1930822420.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG co', 2020.0, 1930859613.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 25831.63, 20200505.0, 'NAA8', 1930859613.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930794806.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 7263.53, 20200417.0, 'NAC6', 1930794806.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 2478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930669301.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 14444.67, 20200319.0, 'NAH4', 1930669301.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930828945.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 554.96, 20200426.0, 'NAA8', 1930828945.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930747187.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 3537.71, 20200405.0, 'NAH4', 1930747187.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930784633.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 407.41, 20200414.0, 'NAA8', 1930784633.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 2482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930861401.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 8053.69, 20200505.0, 'NAAX', 1930861401.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930630440.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 15367.37, 20200312.0, 'NAA8', 1930630440.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930790977.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 36240.81, 20200416.0, 'NAH4', 1930790977.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB foundation', 2020.0, 2960619218.0, '2020-03-08', 20200308, 20200308, '2020-03-27', 'CAD', 'RV', 1.0, 63721.77, 20200317.0, 'CA10', 2960619218.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 2486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930684625.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 2171.25, 20200322.0, 'NAH4', 1930684625.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930692267.0, '2020-03-25', 20200324, 20200325, '2020-04-29', 'USD', 'RV', 1.0, 8019.84, 20200325.0, 'NAG2', 1930692267.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930804578.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 37527.67, 20200421.0, 'NAH4', 1930804578.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930831467.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 2870.75, 20200428.0, 'NAH4', 1930831467.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930704368.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 27891.72, 20200326.0, 'NAA8', 1930704368.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930685994.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 15367.37, 20200323.0, 'NAA8', 1930685994.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930726956.0, '2020-04-04', 20200401, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 20651.54, 20200404.0, 'NAA8', 1930726956.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 2493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930732621.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 8213.88, 20200404.0, 'NAH4', 1930732621.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO us', 2020.0, 2960619913.0, '2020-03-10', 20200310, 20200310, '2020-03-22', 'CAD', 'RV', 1.0, 11134.05, 20200312.0, 'CA10', 2960619913.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 2495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930798188.0, '2020-04-17', 20200417, 20200417, '2020-05-07', 'USD', 'RV', 1.0, 57754.43, 20200417.0, 'NAD1', 1930798188.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930587006.0, '2020-03-01', 20200302, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 69188.32, 20200301.0, 'NAC6', 1930587006.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930653158.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 14474.79, 20200316.0, 'NAA8', 1930653158.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930830687.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 431.34, 20200428.0, 'NAA8', 1930830687.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930842534.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 58611.77, 20200429.0, 'NAC6', 1930842534.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930581264.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 31201.12, 20200228.0, 'NAC6', 1930581264.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 2501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S associates', 2020.0, 1930816132.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 40285.55, 20200424.0, 'NAA8', 1930816132.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930710113.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 75620.63, 20200328.0, 'NAH4', 1930710113.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corporation', 2020.0, 1930810869.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 2187.1, 20200416.0, 'NAM4', 1930810869.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200138417, 'K&K associates', 2020.0, 1930565147.0, '2020-02-29', 20200224, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 1006.54, 20200229.0, 'NAGD', 1930565147.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & corporation', 2020.0, 1930821472.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 34448.44, 20200423.0, 'NAA8', 1930821472.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930578697.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 57273.21, 20200229.0, 'NAA8', 1930578697.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 2507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930740472.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 43686.96, 20200405.0, 'NAH4', 1930740472.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930777541.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 396.17, 20200411.0, 'NAH4', 1930777541.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER llc', 2020.0, 1930851769.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 16117.91, 20200504.0, 'NAA8', 1930851769.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 2510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930819719.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 8351.07, 20200425.0, 'NAH4', 1930819719.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930635607.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 26874.51, 20200311.0, 'NAH4', 1930635607.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F systems', 2020.0, 1930688898.0, '2020-03-26', 20200323, 20200326, '2020-03-26', 'USD', 'RV', 1.0, 8749.18, 20200326.0, 'NAX2', 1930688898.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 2513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930848371.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 29644.19, 20200503.0, 'NAH4', 1930848371.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930732747.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 65168.74, 20200403.0, 'NAC6', 1930732747.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 2515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930758624.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 14520.52, 20200409.0, 'NAH4', 1930758624.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 2516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930604106.0, '2020-03-06', 20200304, 20200306, '2020-05-10', 'USD', 'RV', 1.0, 1276.82, 20200306.0, 'NAGD', 1930604106.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT foundation', 2020.0, 1930834086.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 77754.87, 20200428.0, 'NAA8', 1930834086.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR associates', 2020.0, 1930830634.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 50357.58, 20200427.0, 'NAA8', 1930830634.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S corp', 2020.0, 1930664820.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 1072.21, 20200318.0, 'NAA8', 1930664820.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200920735, 'ALBERT corp', 2020.0, 1930847015.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 160454.0, 20200501.0, 'NAA8', 1930847015.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 2521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930833960.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 20045.68, 20200428.0, 'NAAX', 1930833960.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930792552.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 1898.2, 20200415.0, 'NAH4', 1930792552.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE llc', 2020.0, 1930731829.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 120343.33, 20200403.0, 'NAA8', 1930731829.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 2524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930731309.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 1792.66, 20200402.0, 'NAH4', 1930731309.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930672467.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 51241.46, 20200321.0, 'NAH4', 1930672467.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930831403.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 60779.35, 20200428.0, 'NAC6', 1930831403.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930813090.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 23063.28, 20200422.0, 'NAH4', 1930813090.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762950, 'HAR foundation', 2020.0, 1930752291.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 110364.05, 20200408.0, 'NAA8', 1930752291.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104265, 'SHOPPE trust', 2020.0, 2960632371.0, '2020-05-05', 20200505, 20200505, '2020-05-23', 'CAD', 'RV', 1.0, 5371.58, 20200513.0, 'CA10', 2960632371.0, 1, '2020-05-29', '0-15 days' ); /* INSERT QUERY NO: 2530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR corp', 2020.0, 1930738751.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 58553.79, 20200403.0, 'NAA8', 1930738751.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930835832.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 10810.9, 20200430.0, 'NAA8', 1930835832.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE ', 2020.0, 1930845447.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 7795.2, 20200505.0, 'NAA8', 1930845447.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 2533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO associates', 2020.0, 2960624007.0, '2020-03-25', 20200325, 20200325, '2020-04-10', 'CAD', 'RV', 1.0, 44374.63, 20200331.0, 'CA10', 2960624007.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 2534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930686254.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 25704.91, 20200323.0, 'NAH4', 1930686254.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC foundation', 2020.0, 1930725188.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 8094.41, 20200401.0, 'NAA8', 1930725188.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 2536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930631004.0, '2020-03-11', 20200310, 20200311, '2020-05-15', 'USD', 'RV', 1.0, 37233.0, 20200311.0, 'NAGD', 1930631004.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 2537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930642893.0, '2020-03-12', 20200312, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 9703.19, 20200312.0, 'NAGD', 1930642893.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930584635.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 5992.01, 20200302.0, 'NAC6', 1930584635.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930729736.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 18294.28, 20200402.0, 'NAH4', 1930729736.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corp', 2020.0, 1930714132.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 39999.36, 20200327.0, 'NAA8', 1930714132.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930876145.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 2217.08, 20200508.0, 'NAH4', 1930876145.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930584957.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 5618.38, 20200301.0, 'NAH4', 1930584957.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930778919.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 7995.13, 20200413.0, 'NAH4', 1930778919.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 2544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200718130, 'SYSCO F trust', 2020.0, 1930861662.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 317.16, 20200505.0, 'NAA8', 1930861662.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200777735, 'NASH foundation', 2020.0, 1930754391.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 62082.08, 20200406.0, 'NAA8', 1930754391.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO trust', 2020.0, 2960623411.0, '2020-03-23', 20200323, 20200323, '2020-04-04', 'CAD', 'RV', 1.0, 12684.39, 20200325.0, 'CA10', 2960623411.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 2547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930748693.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 93804.82, 20200404.0, 'NAU5', 1930748693.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200712102, 'SUGAR corporation', 2020.0, 1930612175.0, '2020-03-08', 20200306, 20200308, '2020-05-07', 'USD', 'RV', 1.0, 38809.57, 20200308.0, 'NAVQ', 1930612175.0, 1, '2020-05-09', '0-15 days' ); /* INSERT QUERY NO: 2549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH corporation', 2020.0, 1930828204.0, '2020-04-29', 20200426, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 49401.0, 20200429.0, 'NAA8', 1930828204.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930606050.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 33128.04, 20200307.0, 'NAH4', 1930606050.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE in', 2020.0, 1930784315.0, '2020-04-21', 20200414, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 11168.64, 20200421.0, 'NAA8', 1930784315.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930777903.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 3228.13, 20200411.0, 'NAH4', 1930777903.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930731627.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 13681.7, 20200404.0, 'NAA8', 1930731627.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 2554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930580181.0, '2020-03-01', 20200302, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 14608.57, 20200301.0, 'NAH4', 1930580181.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930827318.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 6013.31, 20200426.0, 'NAH4', 1930827318.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE corp', 2020.0, 1930848205.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 23793.02, 20200505.0, 'NAA8', 1930848205.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 2557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930607402.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 3464.67, 20200307.0, 'NAH4', 1930607402.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930755468.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 1286.64, 20200408.0, 'NAA8', 1930755468.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930788775.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 79.03, 20200416.0, 'NAH4', 1930788775.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036292, 'AMY foundation', 2020.0, 1930587137.0, '2020-03-02', 20200302, 20200302, '2020-03-18', 'USD', 'RV', 1.0, 17882.92, 20200302.0, 'NA3F', 1930587137.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA systems', 2020.0, 1930792362.0, '2020-04-16', 20200416, 20200416, '2020-04-11', 'USD', 'RV', 1.0, 2936.25, 20200401.0, 'NAM2', 1930792362.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930690945.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 1898.9, 20200326.0, 'NAH4', 1930690945.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930794012.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 21172.82, 20200417.0, 'NAH4', 1930794012.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA in', 2020.0, 1930858165.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 21520.88, 20200504.0, 'NAA8', 1930858165.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 2565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930624875.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 8897.43, 20200310.0, 'NAH4', 1930624875.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER co', 2020.0, 1930859921.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 19346.57, 20200506.0, 'NAA8', 1930859921.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930827700.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 20582.07, 20200426.0, 'NAH4', 1930827700.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930654281.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 697.81, 20200316.0, 'NAH4', 1930654281.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE llc', 2020.0, 1930719439.0, '2020-04-02', 20200330, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 167627.85, 20200402.0, 'NAA8', 1930719439.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 2570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943275, 'US us', 2020.0, 1930624258.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 60958.63, 20200309.0, 'NAA8', 1930624258.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT in', 2020.0, 1930782287.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 42800.12, 20200414.0, 'NAA8', 1930782287.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA corporation', 2020.0, 1930789312.0, '2020-04-15', 20200415, 20200415, '2020-04-08', 'USD', 'RV', 1.0, 2339.5, 20200316.0, 'NAM4', 1930789312.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO in', 2020.0, 2960625803.0, '2020-03-31', 20200331, 20200331, '2020-04-10', 'CAD', 'RV', 1.0, 90619.51, 20200331.0, 'CA10', 2960625803.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 2574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930760543.0, '2020-04-08', 20200407, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 26577.32, 20200408.0, 'NAGD', 1930760543.0, 1, '2020-06-08', 'early' ); /* INSERT QUERY NO: 2575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930779682.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 5543.48, 20200414.0, 'NAC6', 1930779682.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 2576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930715400.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 33569.67, 20200328.0, 'NAA8', 1930715400.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC llc', 2020.0, 1930715115.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 14740.82, 20200327.0, 'NAA8', 1930715115.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC ', 2020.0, 1930672427.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 2457.37, 20200316.0, 'NAM2', 1930672427.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930781085.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 36.9, 20200414.0, 'NAH4', 1930781085.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 2580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C in', 2020.0, 1930664252.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 3799.81, 20200318.0, 'NAA8', 1930664252.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930800896.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 5769.52, 20200420.0, 'NAH4', 1930800896.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO llc', 2020.0, 1930598799.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 49754.84, 20200304.0, 'NAA8', 1930598799.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M us', 2020.0, 2960631419.0, '2020-04-28', 20200428, 20200428, '2020-05-09', 'CAD', 'RV', 1.0, 40474.65, 20200429.0, 'CA10', 2960631419.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 2584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC systems', 2020.0, 1930818986.0, '2020-04-23', 20200423, 20200423, '2020-04-26', 'USD', 'RV', 1.0, 4119.74, 20200416.0, 'NAM2', 1930818986.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS associates', 2020.0, 1930713342.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 48675.91, 20200327.0, 'NAA8', 1930713342.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930856610.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 14032.33, 20200506.0, 'NAH4', 1930856610.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 2587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F llc', 2020.0, 2960621476.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'CAD', 'RV', 1.0, 3637.5, 20200320.0, 'CA10', 2960621476.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 2588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER in', 2020.0, 1930616929.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 85184.89, 20200307.0, 'NAA8', 1930616929.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930677181.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 146.84, 20200322.0, 'NAH4', 1930677181.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930585235.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 1329.23, 20200301.0, 'NAH4', 1930585235.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930582445.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 45185.42, 20200229.0, 'NAH4', 1930582445.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930709865.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 3983.68, 20200329.0, 'NAH4', 1930709865.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930847676.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 33030.18, 20200501.0, 'NAH4', 1930847676.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 2594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930643277.0, '2020-03-18', 20200312, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 2254.48, 20200318.0, 'NAH4', 1930643277.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930585356.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 51457.91, 20200301.0, 'NAH4', 1930585356.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930830336.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 10161.03, 20200428.0, 'NAH4', 1930830336.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960631183.0, '2020-05-01', 20200501, 20200501, '2020-05-14', 'CAD', 'RV', 1.0, 71818.02, 20200504.0, 'CA10', 2960631183.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 2598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930673344.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 121703.03, 20200319.0, 'NAU5', 1930673344.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930631698.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 21071.42, 20200311.0, 'NAA8', 1930631698.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO co', 2020.0, 2960617612.0, '2020-02-28', 20200228, 20200228, '2020-03-10', 'CAD', 'RV', 1.0, 16707.48, 20200229.0, 'CA10', 2960617612.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 2601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US in', 2020.0, 1930606803.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 60461.6, 20200306.0, 'NAA8', 1930606803.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930593301.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 36432.63, 20200302.0, 'NAU5', 1930593301.0, 1, '2020-03-18', '0-15 days' ); /* INSERT QUERY NO: 2603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930802311.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 25960.91, 20200420.0, 'NAH4', 1930802311.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930890633.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 7949.5, 20200512.0, 'NAH4', 1930890633.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 2605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960618025.0, '2020-03-03', 20200303, 20200303, '2020-03-14', 'CAD', 'RV', 1.0, 53117.88, 20200304.0, 'CA10', 2960618025.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 2606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100035877, 'DUNKIN llc', 2020.0, 1930623760.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 2911.66, 20200311.0, 'NAA8', 1930623760.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 2607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F trust', 2020.0, 1930652839.0, '2020-03-19', 20200315, 20200319, '2020-03-19', 'USD', 'RV', 1.0, 1312.2, 20200319.0, 'NAX2', 1930652839.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 2608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK ', 2020.0, 1930772885.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 51321.74, 20200410.0, 'NAA8', 1930772885.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930660968.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 13192.6, 20200318.0, 'NAC6', 1930660968.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA foundation', 2020.0, 1930666471.0, '2020-03-18', 20200318, 20200318, '2020-04-08', 'USD', 'RV', 1.0, 14369.34, 20200316.0, 'NAM4', 1930666471.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930772379.0, '2020-04-10', 20200410, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 3321.81, 20200410.0, 'NAGD', 1930772379.0, 1, '2020-06-11', 'early' ); /* INSERT QUERY NO: 2612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS us', 2020.0, 1930599123.0, '2020-03-04', 20200304, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 3487.79, 20200304.0, 'NAGD', 1930599123.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR co', 2020.0, 2960633454.0, '2020-05-08', 20200508, 20200508, '2020-05-19', 'CAD', 'RV', 1.0, 934.48, 20200509.0, 'CA10', 2960633454.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 2614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930777845.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 18351.01, 20200411.0, 'NAU5', 1930777845.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 2615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930826973.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 89852.62, 20200427.0, 'NAH4', 1930826973.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960625173.0, '2020-04-03', 20200403, 20200403, '2020-04-15', 'CAD', 'RV', 1.0, 105894.84, 20200405.0, 'CA10', 2960625173.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 2617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930810802.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 117518.24, 20200422.0, 'NAC6', 1930810802.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200346918, 'CULINAR trust', 2020.0, 1930781201.0, '2020-04-06', 20200413, 20200406, '2020-04-16', 'USD', 'RV', 1.0, 47642.76, 20200406.0, 'NA10', 1930781201.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930625380.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 10094.93, 20200311.0, 'NAAX', 1930625380.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930802238.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 1898.9, 20200421.0, 'NAH4', 1930802238.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST ', 2020.0, 1930659438.0, '2020-03-18', 20200316, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 9292.2, 20200318.0, 'NAGD', 1930659438.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC us', 2020.0, 1930753926.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'USD', 'RV', 1.0, 174.72, 20200401.0, 'NAM4', 1930753926.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 2623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH in', 2020.0, 1930670982.0, '2020-03-25', 20200319, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 2559.0, 20200325.0, 'NAA8', 1930670982.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS in', 2020.0, 1930875518.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 21722.32, 20200507.0, 'NAA8', 1930875518.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA us', 2020.0, 1930649376.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 1121.21, 20200313.0, 'NAA8', 1930649376.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930822052.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 793.48, 20200424.0, 'NAA8', 1930822052.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930778785.0, '2020-04-12', 20200413, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 332.25, 20200412.0, 'NAA8', 1930778785.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 2628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200861551, 'MRS GR corp', 2020.0, 1930733102.0, '2020-04-08', 20200402, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 2403.46, 20200408.0, 'NAA8', 1930733102.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 2629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR trust', 2020.0, 1930599851.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 47755.05, 20200305.0, 'NAA8', 1930599851.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930621669.0, '2020-03-11', 20200308, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 14087.59, 20200311.0, 'NAH4', 1930621669.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930741939.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 7684.18, 20200403.0, 'NAH4', 1930741939.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930683314.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 555.77, 20200321.0, 'NAAX', 1930683314.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930632540.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 26503.19, 20200310.0, 'NAA8', 1930632540.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930691375.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 11564.7, 20200325.0, 'NAA8', 1930691375.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930776714.0, '2020-04-10', 20200410, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 1726.58, 20200410.0, 'NAGD', 1930776714.0, 1, '2020-06-11', 'early' ); /* INSERT QUERY NO: 2636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930820412.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 64623.37, 20200424.0, 'NAC6', 1930820412.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930793250.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 17452.65, 20200417.0, 'NAH4', 1930793250.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930778231.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 73487.74, 20200411.0, 'NAA8', 1930778231.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC associates', 2020.0, 1930875868.0, '2020-05-15', 20200507, 20200515, '2020-05-30', 'USD', 'RV', 1.0, 2625.0, 20200515.0, 'NAA8', 1930875868.0, 1, '2020-05-26', 'early' ); /* INSERT QUERY NO: 2640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930576761.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 54581.8, 20200229.0, 'NAH4', 1930576761.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930684867.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 38410.31, 20200322.0, 'NAH4', 1930684867.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103409, 'BUTTE systems', 2020.0, 1991841857.0, '2020-04-06', 20200402, 20200406, '2020-05-06', 'USD', 'RV', 1.0, 30352.3, 20200406.0, 'NAVE', 1991841857.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 2643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739534, 'OK corp', 2020.0, 1930730751.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 49577.81, 20200402.0, 'NAA8', 1930730751.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 2644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930597389.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 15364.9, 20200303.0, 'NAH4', 1930597389.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930671215.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 3708.44, 20200320.0, 'NAH4', 1930671215.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930797221.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 134.78, 20200417.0, 'NAA8', 1930797221.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 2647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR in', 2020.0, 1930587721.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 45745.63, 20200303.0, 'NAA8', 1930587721.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 2648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M corp', 2020.0, 2960632429.0, '2020-05-03', 20200503, 20200503, '2020-05-13', 'CAD', 'RV', 1.0, 104395.36, 20200503.0, 'CA10', 2960632429.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 2649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200978592, 'PLAZA ', 2020.0, 1990572601.0, '2020-03-17', 20200313, 20200317, '2020-04-21', 'USD', 'RV', 1.0, 22957.29, 20200317.0, 'NAG2', 1990572601.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 2650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE associates', 2020.0, 1930612718.0, '2020-03-06', 20200306, 20200306, '2020-05-10', 'USD', 'RV', 1.0, 2739.83, 20200306.0, 'NAGD', 1930612718.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930684892.0, '2020-03-25', 20200322, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 12668.17, 20200325.0, 'NAH4', 1930684892.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA llc', 2020.0, 1930565299.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 17698.91, 20200227.0, 'NAA8', 1930565299.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 2653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN ', 2020.0, 1930582787.0, '2020-02-28', 20200229, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 47791.77, 20200228.0, 'NAA8', 1930582787.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 2654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930857945.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 13363.18, 20200506.0, 'NAH4', 1930857945.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 2655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930782133.0, '2020-04-20', 20200413, 20200420, '2020-06-24', 'USD', 'RV', 1.0, 403.2, 20200420.0, 'NAGD', 1930782133.0, 1, '2020-06-19', 'early' ); /* INSERT QUERY NO: 2656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930738885.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 2373.96, 20200402.0, 'NAH4', 1930738885.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930808426.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 16599.78, 20200422.0, 'NAH4', 1930808426.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930576784.0, '2020-02-28', 20200227, 20200228, '2020-05-03', 'USD', 'RV', 1.0, 187.91, 20200228.0, 'NAGD', 1930576784.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960623645.0, '2020-03-26', 20200326, 20200326, '2020-04-05', 'CAD', 'RV', 1.0, 46685.71, 20200326.0, 'CA10', 2960623645.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 2660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930880179.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 3270.04, 20200508.0, 'NAH4', 1930880179.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100028952, 'OSAGE trust', 2020.0, 1930586741.0, '2020-03-02', 20200302, 20200302, '2020-04-06', 'USD', 'RV', 1.0, 84400.36, 20200302.0, 'NAG2', 1930586741.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930664872.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 46437.22, 20200318.0, 'NAA8', 1930664872.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 2663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG corporation', 2020.0, 1930670179.0, '2020-03-18', 20200319, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 1864.68, 20200318.0, 'NAGD', 1930670179.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO corp', 2020.0, 1930858965.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 7424.09, 20200504.0, 'NAA8', 1930858965.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 2665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO trust', 2020.0, 1930642649.0, '2020-03-11', 20200312, 20200311, '2020-04-12', 'USD', 'RV', 1.0, 18479.57, 20200311.0, 'NA32', 1930642649.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930718091.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 49433.69, 20200330.0, 'NAH4', 1930718091.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 2667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930726659.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 47599.96, 20200401.0, 'NAH4', 1930726659.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930706388.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 58683.71, 20200326.0, 'NAA8', 1930706388.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930857190.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 280.92, 20200501.0, 'NAM4', 1930857190.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200736337, 'SYSCO F ', 2020.0, 1930592946.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 3865.67, 20200304.0, 'NAA8', 1930592946.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930684117.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 10961.1, 20200323.0, 'NAH4', 1930684117.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930831876.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 14439.6, 20200428.0, 'NAH4', 1930831876.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930610608.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 45703.27, 20200307.0, 'NAH4', 1930610608.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930599572.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 3497.86, 20200301.0, 'NAM4', 1930599572.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103335, 'PARAM corp', 2020.0, 1991839868.0, '2020-03-02', 20200227, 20200302, '2020-04-01', 'USD', 'RV', 1.0, 278.78, 20200302.0, 'NAVE', 1991839868.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 2676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140103278, 'COS ', 2020.0, 1991838983.0, '2020-03-08', 20200304, 20200308, '2020-05-07', 'USD', 'RV', 1.0, 3829.52, 20200308.0, 'NAUZ', 1991838983.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 2677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783189, 'PERFOR systems', 2020.0, 1930800286.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 65501.58, 20200420.0, 'NAA8', 1930800286.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930645466.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3270.04, 20200313.0, 'NAH4', 1930645466.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930584684.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 41405.16, 20200301.0, 'NAH4', 1930584684.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930826845.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 2352.97, 20200426.0, 'NAH4', 1930826845.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST co', 2020.0, 1930874137.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 11945.97, 20200508.0, 'NAAX', 1930874137.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930810307.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 14510.31, 20200423.0, 'NAA8', 1930810307.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930584823.0, '2020-03-03', 20200229, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 17686.54, 20200303.0, 'NAAX', 1930584823.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930627413.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 20536.02, 20200309.0, 'NAU5', 1930627413.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930751048.0, '2020-04-08', 20200405, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 69165.5, 20200408.0, 'NAH4', 1930751048.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 2686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA co', 2020.0, 1930689923.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 677.34, 20200316.0, 'NAM4', 1930689923.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930831954.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 8444.48, 20200429.0, 'NAH4', 1930831954.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 2688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930826993.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 1898.9, 20200426.0, 'NAH4', 1930826993.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930683407.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 22554.12, 20200322.0, 'NAH4', 1930683407.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930616955.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 16731.42, 20200306.0, 'NAH4', 1930616955.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930716226.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 3983.68, 20200329.0, 'NAH4', 1930716226.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930853321.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 14709.71, 20200503.0, 'NAH4', 1930853321.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930829724.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 1399.72, 20200428.0, 'NAH4', 1930829724.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960613782.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'CAD', 'RV', 1.0, 84672.0, 20200304.0, 'CA10', 2960613782.0, 1, '2020-03-15', '0-15 days' ); /* INSERT QUERY NO: 2695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930585700.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 14861.38, 20200303.0, 'NAH4', 1930585700.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE in', 2020.0, 1930607435.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 56350.35, 20200305.0, 'NAA8', 1930607435.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930763197.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 25265.86, 20200409.0, 'NAC6', 1930763197.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930697963.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 37427.59, 20200325.0, 'NAH4', 1930697963.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU llc', 2020.0, 1930700248.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 80084.2, 20200326.0, 'NAA8', 1930700248.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930664198.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 35902.89, 20200318.0, 'NAAX', 1930664198.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930814783.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 14522.91, 20200423.0, 'NAH4', 1930814783.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930861793.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 220.86, 20200507.0, 'NAA8', 1930861793.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930653357.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 48654.33, 20200315.0, 'NAH4', 1930653357.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930636637.0, '2020-03-11', 20200310, 20200311, '2020-04-15', 'USD', 'RV', 1.0, 14659.8, 20200311.0, 'NAG2', 1930636637.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 2705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU co', 2020.0, 1930823128.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 73085.84, 20200424.0, 'NAC6', 1930823128.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930619714.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 14652.64, 20200309.0, 'NAAX', 1930619714.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930772469.0, '2020-04-10', 20200410, 20200410, '2020-04-11', 'USD', 'RV', 1.0, 3850.41, 20200401.0, 'NAM2', 1930772469.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930728973.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 79054.87, 20200401.0, 'NAA8', 1930728973.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930607531.0, '2020-03-05', 20200305, 20200305, '2020-05-09', 'USD', 'RV', 1.0, 38934.41, 20200305.0, 'NAGD', 1930607531.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930858796.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 38289.26, 20200505.0, 'NAH4', 1930858796.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930780754.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 115698.05, 20200413.0, 'NAU5', 1930780754.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 2712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930837446.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 148461.09, 20200430.0, 'NAA8', 1930837446.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 2713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930584620.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 41534.87, 20200301.0, 'NAH4', 1930584620.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930611631.0, '2020-03-06', 20200306, 20200306, '2020-05-10', 'USD', 'RV', 1.0, 4312.86, 20200306.0, 'NAGD', 1930611631.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930619549.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 5976.99, 20200308.0, 'NAH4', 1930619549.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930727180.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 661.11, 20200401.0, 'NAH4', 1930727180.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT foundation', 2020.0, 1930633891.0, '2020-03-10', 20200310, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 19983.56, 20200310.0, 'NAGD', 1930633891.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707005, 'KING S in', 2020.0, 1930839532.0, '2020-05-02', 20200429, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 16448.14, 20200502.0, 'NAA8', 1930839532.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 2719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL llc', 2020.0, 1930597890.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 21300.0, 20200305.0, 'NAA8', 1930597890.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960624479.0, '2020-03-27', 20200327, 20200327, '2020-04-08', 'CAD', 'RV', 1.0, 50116.08, 20200329.0, 'CA10', 2960624479.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 2721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930759959.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 37241.23, 20200407.0, 'NAH4', 1930759959.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930747822.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 7664.54, 20200405.0, 'NAA8', 1930747822.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 2723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930772273.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 42107.5, 20200410.0, 'NAH4', 1930772273.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 2724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930780757.0, '2020-04-12', 20200413, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 42621.2, 20200412.0, 'NAH4', 1930780757.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA corp', 2020.0, 1930847182.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 14444.38, 20200503.0, 'NAH4', 1930847182.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 2726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100027744, 'OMEGA AD corp', 2020.0, 2960630077.0, '2020-04-22', 20200422, 20200422, '2020-04-22', 'CAD', 'RV', 1.0, 1650.0, 20200422.0, 'CAB1', 2960630077.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 2727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930710633.0, '2020-04-08', 20200328, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 100.8, 20200408.0, 'NAGD', 1930710633.0, 1, '2020-06-08', 'early' ); /* INSERT QUERY NO: 2728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930804924.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 35509.95, 20200421.0, 'NAH4', 1930804924.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C systems', 2020.0, 1930767599.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1274.04, 20200409.0, 'NAA8', 1930767599.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 2730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO ', 2020.0, 1930598093.0, '2020-03-07', 20200304, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 4350.38, 20200307.0, 'NAA8', 1930598093.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930606696.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 14242.45, 20200307.0, 'NAA8', 1930606696.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930757597.0, '2020-04-08', 20200407, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 4496.28, 20200408.0, 'NAGD', 1930757597.0, 1, '2020-06-08', 'early' ); /* INSERT QUERY NO: 2733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930580070.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 46734.99, 20200301.0, 'NAH4', 1930580070.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F us', 2020.0, 1930678781.0, '2020-03-22', 20200320, 20200322, '2020-03-22', 'USD', 'RV', 1.0, 19921.2, 20200322.0, 'NAX2', 1930678781.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 2735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930828917.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 30781.52, 20200426.0, 'NAA8', 1930828917.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960631800.0, '2020-04-28', 20200428, 20200428, '2020-05-09', 'CAD', 'RV', 1.0, 43008.17, 20200429.0, 'CA10', 2960631800.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 2737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200076137, 'OLLIE associates', 2020.0, 1930599025.0, '2020-03-10', 20200304, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 4342.32, 20200310.0, 'NAA8', 1930599025.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 2738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930586357.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 3197.56, 20200304.0, 'NAH4', 1930586357.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 2739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA co', 2020.0, 1930789846.0, '2020-04-16', 20200416, 20200416, '2020-04-24', 'USD', 'RV', 1.0, 1049.72, 20200401.0, 'NAM4', 1930789846.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 2740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930612000.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 101331.52, 20200306.0, 'NAC6', 1930612000.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC llc', 2020.0, 1930672407.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 66.48, 20200316.0, 'NAM4', 1930672407.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER systems', 2020.0, 1930582455.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 16777.07, 20200301.0, 'NAA8', 1930582455.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930719417.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 661.11, 20200330.0, 'NAH4', 1930719417.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL us', 2020.0, 1930622823.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 56849.33, 20200308.0, 'NAA8', 1930622823.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930802493.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 70379.58, 20200420.0, 'NAA8', 1930802493.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 2746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930717183.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 27901.03, 20200329.0, 'NAA8', 1930717183.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930674898.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 1356.55, 20200321.0, 'NAH4', 1930674898.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930664512.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 96895.36, 20200317.0, 'NAA8', 1930664512.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930609474.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 14829.9, 20200306.0, 'NAH4', 1930609474.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930659601.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 26953.12, 20200317.0, 'NAH4', 1930659601.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200749782, 'KROG systems', 2020.0, 1930721733.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 15313.4, 20200330.0, 'NAA8', 1930721733.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930773134.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 490.8, 20200401.0, 'NAM4', 1930773134.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 2753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA systems', 2020.0, 1930851748.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 23319.78, 20200502.0, 'NAH4', 1930851748.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 2754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930655410.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 19713.39, 20200317.0, 'NAH4', 1930655410.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930886300.0, '2020-05-08', 20200511, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 27738.49, 20200508.0, 'NAH4', 1930886300.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 2756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930698619.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 5913.88, 20200326.0, 'NAH4', 1930698619.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930609259.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 19320.47, 20200305.0, 'NAA8', 1930609259.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 2758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930763825.0, '2020-04-07', 20200408, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 29556.9, 20200407.0, 'NAU5', 1930763825.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 2759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930599778.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 813.17, 20200305.0, 'NAH4', 1930599778.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200749225, 'SUPER us', 2020.0, 1930854188.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 52820.99, 20200505.0, 'NAA8', 1930854188.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783734, 'FAREW foundation', 2020.0, 1930767852.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 75214.97, 20200408.0, 'NAA8', 1930767852.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930706596.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 53482.12, 20200327.0, 'NAH4', 1930706596.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO associates', 2020.0, 2960628553.0, '2020-04-15', 20200415, 20200415, '2020-05-03', 'CAD', 'RV', 1.0, 11529.28, 20200423.0, 'CA10', 2960628553.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 2764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA co', 2020.0, 1930625082.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 2175.99, 20200309.0, 'NAA8', 1930625082.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930653884.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 49143.69, 20200316.0, 'NAH4', 1930653884.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 2766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930638656.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 41916.92, 20200312.0, 'NAH4', 1930638656.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930719671.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 13765.6, 20200330.0, 'NAAX', 1930719671.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930637633.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 29480.83, 20200312.0, 'NAH4', 1930637633.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930804562.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 13696.5, 20200422.0, 'NAH4', 1930804562.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D foundation', 2020.0, 1930655241.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 19418.82, 20200316.0, 'NAA8', 1930655241.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783190, 'PIT systems', 2020.0, 1930701212.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 37402.24, 20200326.0, 'NAA8', 1930701212.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930657236.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 57201.33, 20200316.0, 'NAU5', 1930657236.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930800261.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 661.11, 20200418.0, 'NAH4', 1930800261.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100033268, 'NICHOL ', 2020.0, 1930828537.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 23172.78, 20200427.0, 'NAA8', 1930828537.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA co', 2020.0, 1930584831.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 46444.6, 20200302.0, 'NAA8', 1930584831.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F trust', 2020.0, 1930665519.0, '2020-03-16', 20200317, 20200316, '2020-03-16', 'USD', 'RV', 1.0, 5095.68, 20200316.0, 'NAX2', 1930665519.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 2777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930797554.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 5615.49, 20200417.0, 'NAH4', 1930797554.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL us', 2020.0, 1930813782.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 21300.0, 20200424.0, 'NAA8', 1930813782.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930802007.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 93990.13, 20200420.0, 'NAC6', 1930802007.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE llc', 2020.0, 1930720309.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 73554.15, 20200330.0, 'NAA8', 1930720309.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA systems', 2020.0, 1930745283.0, '2020-04-04', 20200404, 20200404, '2020-04-24', 'USD', 'RV', 1.0, 9999.02, 20200401.0, 'NAM4', 1930745283.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763489, 'GENERAL foundation', 2020.0, 1930599787.0, '2020-03-05', 20200304, 20200305, '2020-05-09', 'USD', 'RV', 1.0, 29688.1, 20200305.0, 'NAGD', 1930599787.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960617475.0, '2020-03-03', 20200303, 20200303, '2020-03-20', 'CAD', 'RV', 1.0, 11600.85, 20200310.0, 'CA10', 2960617475.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 2784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E in', 2020.0, 1930648224.0, '2020-03-16', 20200313, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 7814.43, 20200316.0, 'NAA8', 1930648224.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900212, 'CASEY us', 2020.0, 1930823099.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 24804.94, 20200424.0, 'NAA8', 1930823099.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC llc', 2020.0, 1930775116.0, '2020-04-16', 20200410, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 9936.0, 20200416.0, 'NAA8', 1930775116.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200712836, 'WINKLE in', 2020.0, 1930669645.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 489.16, 20200319.0, 'NAA8', 1930669645.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ corporation', 2020.0, 1930670556.0, '2020-03-25', 20200319, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 12475.01, 20200325.0, 'NAA8', 1930670556.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930743398.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 25098.48, 20200404.0, 'NAH4', 1930743398.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930752538.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 41038.99, 20200406.0, 'NAH4', 1930752538.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 2791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930666822.0, '2020-03-18', 20200318, 20200318, '2020-04-07', 'USD', 'RV', 1.0, 1066.53, 20200318.0, 'NAD1', 1930666822.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930670976.0, '2020-03-20', 20200319, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 15878.2, 20200320.0, 'NAGD', 1930670976.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 2793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER trust', 2020.0, 1930789632.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 25306.11, 20200415.0, 'NAA8', 1930789632.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 2794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC ', 2020.0, 1930599569.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 116.04, 20200301.0, 'NAM4', 1930599569.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930716732.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 40826.93, 20200329.0, 'NAH4', 1930716732.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930849125.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 227.91, 20200502.0, 'NAH4', 1930849125.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930679086.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 40589.24, 20200321.0, 'NAH4', 1930679086.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930751959.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 61.29, 20200406.0, 'NAH4', 1930751959.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930740532.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 26609.07, 20200405.0, 'NAH4', 1930740532.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA in', 2020.0, 1930810728.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 17014.73, 20200422.0, 'NAA8', 1930810728.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC ', 2020.0, 1930599437.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 66.48, 20200301.0, 'NAM4', 1930599437.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930832705.0, '2020-04-30', 20200428, 20200430, '2020-07-04', 'USD', 'RV', 1.0, 26474.16, 20200430.0, 'NAGD', 1930832705.0, 1, '2020-06-29', 'early' ); /* INSERT QUERY NO: 2803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE trust', 2020.0, 1930651110.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 15821.44, 20200313.0, 'NAA8', 1930651110.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104331, 'CORE-M foundation', 2020.0, 2960630649.0, '2020-04-27', 20200427, 20200427, '2020-05-16', 'CAD', 'RV', 1.0, 14365.56, 20200506.0, 'CA10', 2960630649.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 2805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930797032.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 6178.67, 20200418.0, 'NAH4', 1930797032.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR co', 2020.0, 1930703994.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 109389.81, 20200327.0, 'NAA8', 1930703994.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO corporation', 2020.0, 2960617699.0, '2020-03-04', 20200304, 20200304, '2020-03-16', 'CAD', 'RV', 1.0, 2201.38, 20200306.0, 'CA10', 2960617699.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 2808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930577597.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 48600.31, 20200227.0, 'NAU5', 1930577597.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106181, 'THE us', 2020.0, 2960618435.0, '2020-03-05', 20200305, 20200305, '2020-03-16', 'CAD', 'RV', 1.0, 22416.91, 20200306.0, 'CA10', 2960618435.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 2810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200731999, 'UNITED us', 2020.0, 1930714306.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 49175.35, 20200331.0, 'NAA8', 1930714306.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER in', 2020.0, 1930820227.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 71541.14, 20200424.0, 'NAA8', 1930820227.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930655124.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21418.78, 20200316.0, 'NAH4', 1930655124.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 2813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930817894.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 5151.74, 20200424.0, 'NAA8', 1930817894.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR trust', 2020.0, 1930628294.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 146304.29, 20200312.0, 'NAA8', 1930628294.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930586866.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 39697.02, 20200302.0, 'NAH4', 1930586866.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 2816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930599323.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 34211.35, 20200305.0, 'NAH4', 1930599323.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 2817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930848678.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 47023.01, 20200502.0, 'NAH4', 1930848678.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930838197.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 14516.33, 20200430.0, 'NAH4', 1930838197.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 2819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F corporation', 2020.0, 1930570987.0, '2020-03-01', 20200302, 20200301, '2020-03-01', 'USD', 'RV', 1.0, 52611.54, 20200301.0, 'NAX2', 1930570987.0, 1, '2020-03-07', '0-15 days' ); /* INSERT QUERY NO: 2820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100015557, 'BI ', 2020.0, 1930653316.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 46790.52, 20200316.0, 'NAA8', 1930653316.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930855809.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 2352.97, 20200505.0, 'NAH4', 1930855809.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 2822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT foundation', 2020.0, 1930611448.0, '2020-03-07', 20200306, 20200307, '2020-04-11', 'USD', 'RV', 1.0, 17688.96, 20200307.0, 'NAG2', 1930611448.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 2823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930787921.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 37426.99, 20200416.0, 'NAH4', 1930787921.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930718406.0, '2020-03-30', 20200329, 20200330, '2020-06-03', 'USD', 'RV', 1.0, 951.1, 20200330.0, 'NAGD', 1930718406.0, 1, '2020-05-29', 'early' ); /* INSERT QUERY NO: 2825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930674437.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 9086.04, 20200320.0, 'NAAX', 1930674437.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930826210.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 34990.53, 20200425.0, 'NAH4', 1930826210.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930794718.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 22593.02, 20200416.0, 'NAH4', 1930794718.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 2828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO corporation', 2020.0, 2960623720.0, '2020-03-24', 20200324, 20200324, '2020-04-07', 'CAD', 'RV', 1.0, 8805.54, 20200328.0, 'CA10', 2960623720.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 2829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930708356.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 8100.72, 20200326.0, 'NAH4', 1930708356.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY ', 2020.0, 1930788534.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 13295.21, 20200417.0, 'NAC6', 1930788534.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 2831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930688551.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 562.71, 20200323.0, 'NAA8', 1930688551.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG corporation', 2020.0, 1930857227.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 43062.04, 20200505.0, 'NAA8', 1930857227.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F foundation', 2020.0, 1930611537.0, '2020-03-05', 20200306, 20200305, '2020-04-06', 'USD', 'RV', 1.0, 14630.86, 20200305.0, 'NA32', 1930611537.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL foundation', 2020.0, 1930833606.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 2459.12, 20200505.0, 'NAA8', 1930833606.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 2835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930585236.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 2221.5, 20200301.0, 'NAH4', 1930585236.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ systems', 2020.0, 1930670435.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 135491.75, 20200320.0, 'NAA8', 1930670435.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT ', 2020.0, 1930737590.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 117599.18, 20200404.0, 'NAA8', 1930737590.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930703447.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 79161.12, 20200327.0, 'NAH4', 1930703447.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200439158, 'POST in', 2020.0, 1930628324.0, '2020-03-12', 20200309, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 17916.0, 20200312.0, 'NAA8', 1930628324.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930710153.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 27904.94, 20200327.0, 'NAH4', 1930710153.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930690657.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 11258.95, 20200316.0, 'NAM4', 1930690657.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930570469.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 574.67, 20200227.0, 'NAA8', 1930570469.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 2843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747831, 'SORCE corp', 2020.0, 1930577404.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 4478.12, 20200304.0, 'NAA8', 1930577404.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930683873.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 14820.76, 20200323.0, 'NAH4', 1930683873.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930660525.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 1779.8, 20200319.0, 'NAH4', 1930660525.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930654621.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 185.74, 20200316.0, 'NAA8', 1930654621.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930798934.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 17881.44, 20200419.0, 'NAH4', 1930798934.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC foundation', 2020.0, 2960620022.0, '2020-03-10', 20200311, 20200310, '2020-03-29', 'CAD', 'RV', 1.0, 93228.68, 20200319.0, 'CA10', 2960620022.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 2849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930639566.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 26560.77, 20200313.0, 'NAH4', 1930639566.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930713766.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 51336.61, 20200329.0, 'NAH4', 1930713766.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS co', 2020.0, 1930586125.0, '2020-03-03', 20200301, 20200303, '2020-04-07', 'USD', 'RV', 1.0, 35551.94, 20200303.0, 'NAG2', 1930586125.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 2852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930667134.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 471.56, 20200318.0, 'NAH4', 1930667134.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930846507.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 82411.86, 20200501.0, 'NAAX', 1930846507.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 2854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930730723.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 103903.55, 20200404.0, 'NAH4', 1930730723.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET associates', 2020.0, 1930647450.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 19375.78, 20200313.0, 'NAA8', 1930647450.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960622168.0, '2020-03-20', 20200320, 20200320, '2020-04-03', 'CAD', 'RV', 1.0, 51969.44, 20200324.0, 'CA10', 2960622168.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 2857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930670452.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 110126.02, 20200319.0, 'NAA8', 1930670452.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 2858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930543106.0, '2020-02-27', 20200219, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 2900.73, 20200227.0, 'NAH4', 1930543106.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790710, 'F systems', 2020.0, 1930651783.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 43169.35, 20200316.0, 'NAA8', 1930651783.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 2860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS ', 2020.0, 1930592960.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 15742.14, 20200302.0, 'NAA8', 1930592960.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200403703, 'H & corp', 2020.0, 1930706105.0, '2020-03-26', 20200326, 20200326, '2020-04-05', 'USD', 'RV', 1.0, 25760.0, 20200326.0, 'NA10', 1930706105.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 2862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL corp', 2020.0, 1930801846.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 212.32, 20200421.0, 'NAA8', 1930801846.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER us', 2020.0, 1930862473.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 98427.13, 20200507.0, 'NAA8', 1930862473.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS co', 2020.0, 1930630655.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 4908.96, 20200312.0, 'NAA8', 1930630655.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930597528.0, '2020-03-11', 20200304, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 6361.07, 20200311.0, 'NAH4', 1930597528.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 2866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100015557, 'BI trust', 2020.0, 1930831696.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 22002.02, 20200428.0, 'NAA8', 1930831696.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR corp', 2020.0, 1930727437.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 135325.1, 20200401.0, 'NAA8', 1930727437.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930868512.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 13586.88, 20200507.0, 'NAA8', 1930868512.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER systems', 2020.0, 2960627071.0, '2020-04-08', 20200408, 20200408, '2020-04-20', 'CAD', 'RV', 1.0, 6210.68, 20200410.0, 'CA10', 2960627071.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 2870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930798497.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 42599.81, 20200418.0, 'NAH4', 1930798497.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 2871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930715182.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 9222.81, 20200331.0, 'NAA8', 1930715182.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930717305.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 35051.86, 20200329.0, 'NAH4', 1930717305.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW ', 2020.0, 1930645529.0, '2020-03-17', 20200312, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 83624.25, 20200317.0, 'NAA8', 1930645529.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F llc', 2020.0, 1930640785.0, '2020-03-15', 20200311, 20200315, '2020-03-15', 'USD', 'RV', 1.0, 4475.49, 20200315.0, 'NAX2', 1930640785.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 2875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE corporation', 2020.0, 1930581744.0, '2020-02-29', 20200228, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 12212.61, 20200229.0, 'NAGD', 1930581744.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 2876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930602633.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 39954.46, 20200305.0, 'NAA8', 1930602633.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930772427.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 31751.6, 20200410.0, 'NAA8', 1930772427.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 2878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930632471.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 138.75, 20200311.0, 'NAA8', 1930632471.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT associates', 2020.0, 1930638246.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 770.61, 20200311.0, 'NAA8', 1930638246.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M in', 2020.0, 2960616575.0, '2020-03-07', 20200307, 20200307, '2020-03-18', 'CAD', 'RV', 1.0, 66248.18, 20200308.0, 'CA10', 2960616575.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 2881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930643525.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 54525.6, 20200312.0, 'NAH4', 1930643525.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 2882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930598069.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 41908.98, 20200306.0, 'NAH4', 1930598069.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER co', 2020.0, 1930637665.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 87644.82, 20200312.0, 'NAA8', 1930637665.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corp', 2020.0, 1930818345.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 7603.47, 20200416.0, 'NAM1', 1930818345.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104475, 'FOC foundation', 2020.0, 2960625884.0, '2020-04-05', 20200405, 20200405, '2020-04-22', 'CAD', 'RV', 1.0, 6610.8, 20200412.0, 'CA10', 2960625884.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 2886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE in', 2020.0, 1930736987.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 16387.85, 20200403.0, 'NAA8', 1930736987.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930834027.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 36960.74, 20200429.0, 'NAA8', 1930834027.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930857274.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 2357.81, 20200504.0, 'NAH4', 1930857274.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200724999, 'GILSTE co', 2020.0, 1930631019.0, '2020-03-10', 20200310, 20200310, '2020-03-20', 'USD', 'RV', 1.0, 52624.8, 20200310.0, 'NA10', 1930631019.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA trust', 2020.0, 1930814604.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 1152.96, 20200422.0, 'NAA8', 1930814604.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ co', 2020.0, 1930804096.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 40339.47, 20200420.0, 'NAA8', 1930804096.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930776710.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 661.11, 20200412.0, 'NAH4', 1930776710.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 2893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930850566.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 28866.7, 20200503.0, 'NAH4', 1930850566.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 2894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100055500, 'ATLAS W corp', 2020.0, 1930670949.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 18989.3, 20200320.0, 'NAA8', 1930670949.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER foundation', 2020.0, 1930798794.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 63629.36, 20200418.0, 'NAA8', 1930798794.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 2896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930666692.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 64288.55, 20200319.0, 'NAH4', 1930666692.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 2897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930686970.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 81177.45, 20200323.0, 'NAA8', 1930686970.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930704937.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 4342.03, 20200325.0, 'NAH4', 1930704937.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 2899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA in', 2020.0, 1930777953.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 8737.97, 20200411.0, 'NAA8', 1930777953.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930627584.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 3947.94, 20200309.0, 'NAA8', 1930627584.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 2901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930609280.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 38288.26, 20200306.0, 'NAAX', 1930609280.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA llc', 2020.0, 1930729753.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 49464.92, 20200401.0, 'NAA8', 1930729753.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 2903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930732332.0, '2020-04-03', 20200402, 20200403, '2020-06-07', 'USD', 'RV', 1.0, 31094.89, 20200403.0, 'NAGD', 1930732332.0, 1, '2020-06-05', 'early' ); /* INSERT QUERY NO: 2904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER associates', 2020.0, 1930683834.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 121610.67, 20200321.0, 'NAA8', 1930683834.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930826553.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 50224.71, 20200425.0, 'NAH4', 1930826553.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930820225.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 37837.93, 20200423.0, 'NAA8', 1930820225.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 2907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930602641.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 8793.09, 20200305.0, 'NAAX', 1930602641.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 2908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930581136.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 52464.61, 20200228.0, 'NAH4', 1930581136.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930698747.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 52442.43, 20200326.0, 'NAH4', 1930698747.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930647419.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 28074.5, 20200314.0, 'NAH4', 1930647419.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930620247.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 10662.57, 20200309.0, 'NAH4', 1930620247.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930854165.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 27562.99, 20200504.0, 'NAH4', 1930854165.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 2913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930754141.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 70380.15, 20200405.0, 'NAH4', 1930754141.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ foundation', 2020.0, 1930686322.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 156689.03, 20200323.0, 'NAA8', 1930686322.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 2915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100044041, 'DEF. F ', 2020.0, 1930810835.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 1486.69, 20200416.0, 'NAM4', 1930810835.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930580005.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 16714.11, 20200229.0, 'NAH4', 1930580005.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS trust', 2020.0, 1930670411.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 64500.65, 20200318.0, 'NAA8', 1930670411.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930684767.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 16956.12, 20200322.0, 'NAH4', 1930684767.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930604660.0, '2020-03-04', 20200305, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 2647.71, 20200304.0, 'NAGD', 1930604660.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU foundation', 2020.0, 1930842721.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 56578.36, 20200429.0, 'NAA8', 1930842721.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930623344.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 47634.03, 20200310.0, 'NAAX', 1930623344.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930582823.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 44550.01, 20200229.0, 'NAH4', 1930582823.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930618843.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 1652.4, 20200301.0, 'NAM4', 1930618843.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS ', 2020.0, 1930859055.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 13654.53, 20200504.0, 'NAA8', 1930859055.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 2925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739534, 'OK corp', 2020.0, 1930748215.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 24074.71, 20200404.0, 'NAA8', 1930748215.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 2926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701314, 'MBM trust', 2020.0, 1930870892.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 10085.37, 20200508.0, 'NAA8', 1930870892.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 2927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER co', 2020.0, 1930852130.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 91967.76, 20200504.0, 'NAA8', 1930852130.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 2928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930580003.0, '2020-03-02', 20200302, 20200302, '2020-03-02', 'USD', 'RV', 1.0, 2718.94, 20200302.0, 'NAX2', 1930580003.0, 1, '2020-03-08', '0-15 days' ); /* INSERT QUERY NO: 2929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE co', 2020.0, 1930729582.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 59256.85, 20200402.0, 'NAA8', 1930729582.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO foundation', 2020.0, 1930595955.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 206.01, 20200303.0, 'NAA8', 1930595955.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corporation', 2020.0, 2960625493.0, '2020-04-08', 20200408, 20200408, '2020-04-19', 'CAD', 'RV', 1.0, 90691.29, 20200409.0, 'CA10', 2960625493.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 2932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930701273.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 113161.25, 20200326.0, 'NAA8', 1930701273.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO llc', 2020.0, 1930593035.0, '2020-03-05', 20200302, 20200305, '2020-04-06', 'USD', 'RV', 1.0, 17469.54, 20200305.0, 'NA32', 1930593035.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 2934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER co', 2020.0, 1930799751.0, '2020-04-17', 20200418, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 73641.19, 20200417.0, 'NAA8', 1930799751.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 2935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200040366, 'RASTEL us', 2020.0, 1930660756.0, '2020-03-20', 20200317, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 1304.81, 20200320.0, 'NAA8', 1930660756.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 2936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043892, 'IN-N associates', 2020.0, 1930645318.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 15414.69, 20200312.0, 'NAA8', 1930645318.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 2937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT systems', 2020.0, 1930707397.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 102236.22, 20200326.0, 'NAU5', 1930707397.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 2938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930584686.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 52792.35, 20200301.0, 'NAH4', 1930584686.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781831, 'RITE foundation', 2020.0, 1930700836.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 49065.2, 20200326.0, 'NAA8', 1930700836.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 2940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930813591.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 144097.52, 20200422.0, 'NAU5', 1930813591.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 2941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corporation', 2020.0, 2960625640.0, '2020-03-31', 20200331, 20200331, '2020-04-10', 'CAD', 'RV', 1.0, 103747.65, 20200331.0, 'CA10', 2960625640.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 2942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930571176.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 17085.42, 20200228.0, 'NAH4', 1930571176.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 2943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930651997.0, '2020-03-17', 20200314, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 10387.38, 20200317.0, 'NAH4', 1930651997.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930624534.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 600.17, 20200310.0, 'NAA8', 1930624534.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 2945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930623698.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 5236.01, 20200310.0, 'NAH4', 1930623698.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 2946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200982294, 'BUR corp', 2020.0, 1930750170.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 60896.68, 20200406.0, 'NAA8', 1930750170.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT corp', 2020.0, 1930670615.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 117213.72, 20200319.0, 'NAA8', 1930670615.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960627474.0, '2020-04-13', 20200413, 20200413, '2020-04-24', 'CAD', 'RV', 1.0, 59852.61, 20200414.0, 'CA10', 2960627474.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 2949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930714851.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 33696.47, 20200328.0, 'NAH4', 1930714851.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930583878.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 33908.96, 20200301.0, 'NAH4', 1930583878.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930701313.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 51719.62, 20200326.0, 'NAH4', 1930701313.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 2952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930834588.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 39336.37, 20200430.0, 'NAH4', 1930834588.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 2953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930567036.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 12341.76, 20200227.0, 'NAH4', 1930567036.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 2954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR in', 2020.0, 1930705233.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 13410.63, 20200326.0, 'NAA8', 1930705233.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 2955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930777163.0, '2020-04-10', 20200411, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 86428.29, 20200410.0, 'NAA8', 1930777163.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930713635.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 35403.09, 20200329.0, 'NAH4', 1930713635.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 2957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M corporation', 2020.0, 2960623576.0, '2020-03-26', 20200326, 20200326, '2020-04-05', 'CAD', 'RV', 1.0, 133353.01, 20200326.0, 'CA10', 2960623576.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 2958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742791, 'QUI ', 2020.0, 1930722987.0, '2020-03-31', 20200330, 20200331, '2020-06-04', 'USD', 'RV', 1.0, 1788.62, 20200331.0, 'NAGD', 1930722987.0, 1, '2020-05-31', 'early' ); /* INSERT QUERY NO: 2959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW llc', 2020.0, 1930592953.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 109902.39, 20200302.0, 'NAA8', 1930592953.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 2960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930585424.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 14204.38, 20200302.0, 'NAAX', 1930585424.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930834101.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 35353.19, 20200429.0, 'NAC6', 1930834101.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 2962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930660749.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 23631.56, 20200317.0, 'NAH4', 1930660749.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930687122.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 18688.21, 20200322.0, 'NAH4', 1930687122.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA trust', 2020.0, 1930596044.0, '2020-03-04', 20200303, 20200304, '2020-04-03', 'USD', 'RV', 1.0, 62219.83, 20200304.0, 'NAD5', 1930596044.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 2965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corporation', 2020.0, 1930839168.0, '2020-04-30', 20200430, 20200430, '2020-04-11', 'USD', 'RV', 1.0, 23941.67, 20200401.0, 'NAM2', 1930839168.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930822095.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 37145.31, 20200424.0, 'NAH4', 1930822095.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 2967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930843632.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 11574.94, 20200501.0, 'NAA8', 1930843632.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 2968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ in', 2020.0, 1930582286.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 14988.43, 20200229.0, 'NAA8', 1930582286.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 2969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930827550.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 53899.98, 20200426.0, 'NAH4', 1930827550.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930759926.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 237.35, 20200408.0, 'NAA8', 1930759926.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 2971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930614187.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 32949.74, 20200308.0, 'NAH4', 1930614187.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 2972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930653125.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 49890.37, 20200315.0, 'NAH4', 1930653125.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200481695, 'FAR W ', 2020.0, 1930713354.0, '2020-03-27', 20200327, 20200327, '2020-04-26', 'USD', 'RV', 1.0, 12606.5, 20200327.0, 'NAD5', 1930713354.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 2974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930823759.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 7325.44, 20200425.0, 'NAA8', 1930823759.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 2975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930860570.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 33295.02, 20200506.0, 'NAH4', 1930860570.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 2976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930756889.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 43489.18, 20200407.0, 'NAH4', 1930756889.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930676231.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 52747.63, 20200321.0, 'NAH4', 1930676231.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 2978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100015557, 'BI in', 2020.0, 1930767817.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 15628.36, 20200408.0, 'NAA8', 1930767817.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 2979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930604789.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 113608.52, 20200305.0, 'NAA8', 1930604789.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 2980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930751827.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 56913.59, 20200406.0, 'NAA8', 1930751827.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 2981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930693273.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 44777.63, 20200324.0, 'NAH4', 1930693273.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 2982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO us', 2020.0, 1930781940.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 57348.15, 20200414.0, 'NAA8', 1930781940.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 2983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930802455.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 498.03, 20200420.0, 'NAH4', 1930802455.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 2984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US llc', 2020.0, 1930759669.0, '2020-04-07', 20200407, 20200407, '2020-04-27', 'USD', 'RV', 1.0, 84571.23, 20200407.0, 'NAD1', 1930759669.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 2985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200568183, 'E G AY corporation', 2020.0, 1930814704.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 29542.34, 20200422.0, 'NAA8', 1930814704.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 2986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER us', 2020.0, 1930725267.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 12825.41, 20200401.0, 'NAA8', 1930725267.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 2987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F llc', 2020.0, 1930658215.0, '2020-03-18', 20200316, 20200318, '2020-03-18', 'USD', 'RV', 1.0, 63680.22, 20200318.0, 'NAX2', 1930658215.0, 1, '2020-03-23', '0-15 days' ); /* INSERT QUERY NO: 2988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930638569.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 547.39, 20200312.0, 'NAA8', 1930638569.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 2989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930834230.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 44964.46, 20200428.0, 'NAA8', 1930834230.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 2990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930751664.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 53988.58, 20200407.0, 'NAH4', 1930751664.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 2991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR in', 2020.0, 1930730622.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 5149.91, 20200402.0, 'NAA8', 1930730622.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 2992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH trust', 2020.0, 1930592868.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 61221.81, 20200303.0, 'NAA8', 1930592868.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930585258.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 56228.36, 20200301.0, 'NAH4', 1930585258.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 2994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930714813.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 21255.53, 20200327.0, 'NAH4', 1930714813.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 2995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930759330.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 14752.8, 20200407.0, 'NAH4', 1930759330.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930752393.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 8030.75, 20200407.0, 'NAH4', 1930752393.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 2997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930753932.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'USD', 'RV', 1.0, 18113.4, 20200401.0, 'NAM4', 1930753932.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 2998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930659999.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 85216.7, 20200318.0, 'NAA8', 1930659999.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 2999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corporation', 2020.0, 1930723704.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 154018.37, 20200401.0, 'NAA8', 1930723704.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 3000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930669173.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 3270.04, 20200318.0, 'NAH4', 1930669173.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 3001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200071186, 'FATH corporation', 2020.0, 1930635728.0, '2020-03-13', 20200310, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 38782.56, 20200313.0, 'NAA8', 1930635728.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200002965, 'DECA in', 2020.0, 1930767733.0, '2020-04-09', 20200409, 20200409, '2020-04-11', 'USD', 'RV', 1.0, 341278.88, 20200401.0, 'NAM2', 1930767733.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC foundation', 2020.0, 2960626043.0, '2020-04-05', 20200405, 20200405, '2020-04-17', 'CAD', 'RV', 1.0, 12377.56, 20200407.0, 'CA10', 2960626043.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 3004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930796256.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 61.29, 20200418.0, 'NAH4', 1930796256.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930785443.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 403.24, 20200415.0, 'NAA8', 1930785443.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 3006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930584809.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 465.77, 20200229.0, 'NAA8', 1930584809.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930726723.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 28669.71, 20200401.0, 'NAH4', 1930726723.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA us', 2020.0, 1930745268.0, '2020-04-04', 20200404, 20200404, '2020-04-24', 'USD', 'RV', 1.0, 12.96, 20200401.0, 'NAM4', 1930745268.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930594729.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 393.48, 20200304.0, 'NAA8', 1930594729.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930614069.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 51.72, 20200301.0, 'NAM4', 1930614069.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930837593.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 682.36, 20200501.0, 'NAH4', 1930837593.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930689870.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 9371.26, 20200316.0, 'NAM4', 1930689870.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930832597.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 18465.76, 20200428.0, 'NAA8', 1930832597.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930577996.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 566.48, 20200228.0, 'NAH4', 1930577996.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 3015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701040, 'SOUTHE ', 2020.0, 1930705680.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 39756.16, 20200331.0, 'NAA8', 1930705680.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 3016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100054399, 'U in', 2020.0, 1930780335.0, '2020-04-17', 20200413, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 14016.96, 20200417.0, 'NAA8', 1930780335.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 3017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corp', 2020.0, 1930647213.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3309.83, 20200313.0, 'NAA8', 1930647213.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930747775.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 47877.8, 20200405.0, 'NAH4', 1930747775.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA co', 2020.0, 1930787645.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 37523.45, 20200415.0, 'NAA8', 1930787645.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR ', 2020.0, 1930567511.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 9716.89, 20200227.0, 'NAA8', 1930567511.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 3021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930604948.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 964.91, 20200305.0, 'NAA8', 1930604948.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 3022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930829360.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 6587.49, 20200426.0, 'NAH4', 1930829360.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930581427.0, '2020-02-27', 20200228, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 54405.18, 20200227.0, 'NAH4', 1930581427.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 3024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S associates', 2020.0, 1930668464.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 120803.02, 20200320.0, 'NAA8', 1930668464.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200126819, 'MCLANE co', 2020.0, 1930682066.0, '2020-03-24', 20200321, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 29443.0, 20200324.0, 'NAA8', 1930682066.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930693608.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 3227.43, 20200325.0, 'NAH4', 1930693608.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930598145.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 9176.26, 20200305.0, 'NAH4', 1930598145.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC trust', 2020.0, 1930618833.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 12.96, 20200301.0, 'NAM4', 1930618833.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930598607.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 232.9, 20200305.0, 'NAH4', 1930598607.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930623577.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 943.12, 20200309.0, 'NAH4', 1930623577.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG llc', 2020.0, 1930593486.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 42253.25, 20200304.0, 'NAA8', 1930593486.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721530, 'REDNE co', 2020.0, 1930635737.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 55331.64, 20200310.0, 'NAA8', 1930635737.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W corporation', 2020.0, 1930753058.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 122850.47, 20200406.0, 'NAC6', 1930753058.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930683419.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 12767.82, 20200322.0, 'NAH4', 1930683419.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M in', 2020.0, 1930875599.0, '2020-05-06', 20200507, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 33705.58, 20200506.0, 'NAA8', 1930875599.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 3036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930732640.0, '2020-03-29', 20200402, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 55570.39, 20200329.0, 'NAA8', 1930732640.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930788047.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 38456.4, 20200416.0, 'NAA8', 1930788047.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930636573.0, '2020-03-10', 20200311, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 13694.52, 20200310.0, 'NAAX', 1930636573.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO systems', 2020.0, 2960623769.0, '2020-03-26', 20200326, 20200326, '2020-04-05', 'CAD', 'RV', 1.0, 94523.44, 20200326.0, 'CA10', 2960623769.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 3040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200755701, 'ASSOCI trust', 2020.0, 1930826190.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 39345.07, 20200427.0, 'NAA8', 1930826190.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930752139.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 4921.64, 20200408.0, 'NAA8', 1930752139.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930726324.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 20297.98, 20200401.0, 'NAH4', 1930726324.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930729183.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 5625.41, 20200401.0, 'NAH4', 1930729183.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930692277.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 52665.58, 20200324.0, 'NAA8', 1930692277.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930572602.0, '2020-02-29', 20200226, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 13789.98, 20200229.0, 'NAH4', 1930572602.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC trust', 2020.0, 1930675063.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 9355.35, 20200322.0, 'NAA8', 1930675063.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104392, 'FLANAG ', 2020.0, 2960629754.0, '2020-04-23', 20200423, 20200423, '2020-05-04', 'CAD', 'RV', 1.0, 21922.5, 20200424.0, 'CA10', 2960629754.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 3048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930774549.0, '2020-04-06', 20200410, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 277.82, 20200406.0, 'NAA8', 1930774549.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 3049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200799367, 'MCL corp', 2020.0, 1930823848.0, '2020-04-24', 20200424, 20200424, '2020-03-22', 'USD', 'RV', 1.0, 16482.33, 20200307.0, 'NAA8', 1930823848.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA ', 2020.0, 1930690336.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 13557.43, 20200316.0, 'NAM4', 1930690336.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & us', 2020.0, 1930709537.0, '2020-03-26', 20200327, 20200326, '2020-05-30', 'USD', 'RV', 1.0, 15680.93, 20200326.0, 'NAGD', 1930709537.0, 1, '2020-05-25', 'early' ); /* INSERT QUERY NO: 3052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930892051.0, '2020-05-12', 20200512, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 10401.09, 20200512.0, 'NAH4', 1930892051.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 3053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152841, 'CAPI trust', 2020.0, 1930601092.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 20133.26, 20200304.0, 'NAA8', 1930601092.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930767921.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 67200.46, 20200410.0, 'NAA8', 1930767921.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR in', 2020.0, 1930670549.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 80932.66, 20200319.0, 'NAA8', 1930670549.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930617820.0, '2020-03-07', 20200307, 20200307, '2020-03-11', 'USD', 'RV', 1.0, 2208.64, 20200301.0, 'NAM2', 1930617820.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 3057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930827348.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 18292.56, 20200426.0, 'NAH4', 1930827348.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105508, 'DOLLARA co', 2020.0, 2960617990.0, '2020-03-03', 20200303, 20200303, '2020-03-16', 'CAD', 'RV', 1.0, 17634.29, 20200306.0, 'CA10', 2960617990.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 3059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930701054.0, '2020-03-27', 20200326, 20200327, '2020-05-31', 'USD', 'RV', 1.0, 8006.68, 20200327.0, 'NAGD', 1930701054.0, 1, '2020-05-27', 'early' ); /* INSERT QUERY NO: 3060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930605706.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 60826.72, 20200305.0, 'NAH4', 1930605706.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER ', 2020.0, 1930699648.0, '2020-03-28', 20200325, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 20213.75, 20200328.0, 'NAA8', 1930699648.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930802350.0, '2020-04-23', 20200420, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 53231.34, 20200423.0, 'NAA8', 1930802350.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930857767.0, '2020-05-05', 20200505, 20200505, '2020-05-11', 'USD', 'RV', 1.0, 12435.68, 20200501.0, 'NAM2', 1930857767.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930645325.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 58996.69, 20200313.0, 'NAH4', 1930645325.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930641938.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 19965.0, 20200312.0, 'NAH4', 1930641938.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 3066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930850397.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 1358.89, 20200503.0, 'NAC6', 1930850397.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 3067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930671023.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 80859.98, 20200319.0, 'NAA8', 1930671023.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE llc', 2020.0, 1930790873.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 90640.58, 20200415.0, 'NAA8', 1930790873.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 3069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930686727.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 64734.88, 20200322.0, 'NAA8', 1930686727.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930747141.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 34677.97, 20200405.0, 'NAH4', 1930747141.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930798733.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 606.2, 20200418.0, 'NAA8', 1930798733.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200254284, 'QUAK corporation', 2020.0, 1930598578.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 22681.62, 20200304.0, 'NAA8', 1930598578.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930660959.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 105169.44, 20200318.0, 'NAU5', 1930660959.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA associates', 2020.0, 1930756786.0, '2020-04-07', 20200407, 20200407, '2020-04-24', 'USD', 'RV', 1.0, 28.32, 20200401.0, 'NAM4', 1930756786.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930611728.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 73323.48, 20200306.0, 'NAU5', 1930611728.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO ', 2020.0, 2960623149.0, '2020-03-21', 20200321, 20200321, '2020-04-02', 'CAD', 'RV', 1.0, 80357.93, 20200323.0, 'CA10', 2960623149.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 3077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F co', 2020.0, 1930626267.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 9065.04, 20200309.0, 'NAA8', 1930626267.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - corporation', 2020.0, 1930806383.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 116900.63, 20200420.0, 'NAA8', 1930806383.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 3079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930714292.0, '2020-03-29', 20200328, 20200329, '2020-06-02', 'USD', 'RV', 1.0, 7443.17, 20200329.0, 'NAGD', 1930714292.0, 1, '2020-05-29', 'early' ); /* INSERT QUERY NO: 3080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930724273.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 29343.24, 20200331.0, 'NAH4', 1930724273.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930688080.0, '2020-03-21', 20200323, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 165.9, 20200321.0, 'NAA8', 1930688080.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 3082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930737079.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 9808.33, 20200405.0, 'NAH4', 1930737079.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930598435.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 73179.46, 20200305.0, 'NAH4', 1930598435.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105720, 'BROWN in', 2020.0, 2960617064.0, '2020-02-27', 20200227, 20200227, '2020-03-16', 'CAD', 'RV', 1.0, 11915.48, 20200306.0, 'CA10', 2960617064.0, 1, '2020-03-18', '0-15 days' ); /* INSERT QUERY NO: 3085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930708898.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 30.64, 20200328.0, 'NAH4', 1930708898.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930747278.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 17243.76, 20200403.0, 'NAA8', 1930747278.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S corp', 2020.0, 1930669675.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 66.49, 20200318.0, 'NAA8', 1930669675.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960629793.0, '2020-04-28', 20200428, 20200428, '2020-05-10', 'CAD', 'RV', 1.0, 203568.0, 20200430.0, 'CA10', 2960629793.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 3089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930713849.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 8440.9, 20200328.0, 'NAH4', 1930713849.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930585343.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 7513.58, 20200302.0, 'NAH4', 1930585343.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 3091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO co', 2020.0, 1930584625.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 43888.68, 20200302.0, 'NAA8', 1930584625.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corp', 2020.0, 2960620707.0, '2020-03-12', 20200312, 20200312, '2020-03-29', 'CAD', 'RV', 1.0, 3016.24, 20200319.0, 'CA10', 2960620707.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 3093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200126819, 'MCLANE corp', 2020.0, 1930620832.0, '2020-03-12', 20200307, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 335.52, 20200312.0, 'NAA8', 1930620832.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930718077.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 47785.67, 20200331.0, 'NAH4', 1930718077.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930594336.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 47143.89, 20200303.0, 'NAH4', 1930594336.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930584738.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 122.5, 20200301.0, 'NAA8', 1930584738.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 3097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930845837.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 15822.35, 20200502.0, 'NAH4', 1930845837.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 3098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU in', 2020.0, 1930772938.0, '2020-04-13', 20200410, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 23197.18, 20200413.0, 'NAA8', 1930772938.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930794750.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 3987.68, 20200418.0, 'NAH4', 1930794750.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930747186.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 5896.16, 20200405.0, 'NAH4', 1930747186.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE foundation', 2020.0, 1930686251.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 89571.98, 20200322.0, 'NAA8', 1930686251.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH us', 2020.0, 1930674018.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 17377.9, 20200319.0, 'NAC6', 1930674018.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE foundation', 2020.0, 1930655515.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 166724.91, 20200318.0, 'NAA8', 1930655515.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930693721.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 60065.79, 20200326.0, 'NAH4', 1930693721.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 3105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930666350.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 13376.75, 20200319.0, 'NAH4', 1930666350.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930665951.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 76918.69, 20200317.0, 'NAC6', 1930665951.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930642224.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 17104.32, 20200312.0, 'NAA8', 1930642224.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930831314.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 3390.17, 20200427.0, 'NAA8', 1930831314.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930778150.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 8344.01, 20200412.0, 'NAH4', 1930778150.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930718845.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3437.79, 20200330.0, 'NAH4', 1930718845.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC ', 2020.0, 1930772438.0, '2020-04-10', 20200410, 20200410, '2020-04-11', 'USD', 'RV', 1.0, 18811.83, 20200401.0, 'NAM2', 1930772438.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930747118.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 30981.5, 20200406.0, 'NAH4', 1930747118.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930619680.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 15110.23, 20200307.0, 'NAH4', 1930619680.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930883297.0, '2020-05-11', 20200510, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 38170.09, 20200511.0, 'NAH4', 1930883297.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 3115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930753008.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 186.05, 20200405.0, 'NAA8', 1930753008.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930784312.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 451.57, 20200416.0, 'NAH4', 1930784312.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930728944.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 82.24, 20200401.0, 'NAH4', 1930728944.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960623264.0, '2020-03-24', 20200324, 20200324, '2020-04-05', 'CAD', 'RV', 1.0, 96275.31, 20200326.0, 'CA10', 2960623264.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 3119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930611399.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 10463.16, 20200307.0, 'NAH4', 1930611399.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930675781.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 313.13, 20200321.0, 'NAH4', 1930675781.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930799141.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 24824.07, 20200419.0, 'NAH4', 1930799141.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930804819.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 696.37, 20200421.0, 'NAA8', 1930804819.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 3123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW associates', 2020.0, 1930863291.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 20108.72, 20200506.0, 'NAA8', 1930863291.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 3124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR corporation', 2020.0, 1930611334.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 19209.92, 20200308.0, 'NAA8', 1930611334.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930829073.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 16731.84, 20200427.0, 'NAC6', 1930829073.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW trust', 2020.0, 1930651854.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 126613.39, 20200316.0, 'NAA8', 1930651854.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK trust', 2020.0, 1930688766.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 117296.16, 20200323.0, 'NAA8', 1930688766.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930684915.0, '2020-03-23', 20200322, 20200323, '2020-05-27', 'USD', 'RV', 1.0, 1210.31, 20200323.0, 'NAGD', 1930684915.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 3129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA co', 2020.0, 1930876834.0, '2020-05-07', 20200507, 20200507, '2020-05-24', 'USD', 'RV', 1.0, 4855.58, 20200501.0, 'NAM4', 1930876834.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 3130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930623314.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 591.69, 20200309.0, 'NAH4', 1930623314.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930653121.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 2962.02, 20200315.0, 'NAH4', 1930653121.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930847977.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 14725.3, 20200502.0, 'NAH4', 1930847977.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 3133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960622229.0, '2020-03-23', 20200323, 20200323, '2020-04-02', 'CAD', 'RV', 1.0, 18723.86, 20200323.0, 'CA10', 2960622229.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 3134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F in', 2020.0, 1930671292.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 58959.15, 20200319.0, 'NAA8', 1930671292.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930712274.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 78802.91, 20200328.0, 'NAA8', 1930712274.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930747767.0, '2020-04-07', 20200404, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 33444.05, 20200407.0, 'NAH4', 1930747767.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930731824.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 78391.24, 20200403.0, 'NAH4', 1930731824.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 3138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930636967.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 57116.43, 20200312.0, 'NAAX', 1930636967.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930749915.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 2321.7, 20200406.0, 'NAH4', 1930749915.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930704798.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 5984.45, 20200328.0, 'NAA8', 1930704798.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930780547.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 382.9, 20200414.0, 'NAA8', 1930780547.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930714296.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 65454.16, 20200328.0, 'NAH4', 1930714296.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB corp', 2020.0, 2960628055.0, '2020-04-12', 20200412, 20200412, '2020-05-01', 'CAD', 'RV', 1.0, 42774.0, 20200421.0, 'CA10', 2960628055.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 3144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK systems', 2020.0, 1930657221.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 85444.98, 20200316.0, 'NAA8', 1930657221.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 3145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930604868.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 31.56, 20200305.0, 'NAA8', 1930604868.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 3146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930773600.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 14702.84, 20200411.0, 'NAH4', 1930773600.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930637177.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 44395.21, 20200311.0, 'NAH4', 1930637177.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100011958, 'IND foundation', 2020.0, 1991839644.0, '2020-02-27', 20200225, 20200227, '2020-04-12', 'USD', 'RV', 1.0, 10594.06, 20200227.0, 'NAVF', 1991839644.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 3149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR corp', 2020.0, 1930704813.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 66047.33, 20200325.0, 'NAA8', 1930704813.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930744933.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 49984.92, 20200403.0, 'NAU5', 1930744933.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 3151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W in', 2020.0, 1930801644.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 99667.4, 20200419.0, 'NAC6', 1930801644.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782772, 'ASSOC G in', 2020.0, 1930857455.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 2569.04, 20200505.0, 'NAA8', 1930857455.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 3153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200984794, 'GREA us', 2020.0, 1930845014.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 96700.3, 20200501.0, 'NAA8', 1930845014.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930764425.0, '2020-04-01', 20200408, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 19477.9, 20200401.0, 'NAAX', 1930764425.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930779382.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 33.18, 20200413.0, 'NAA8', 1930779382.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930586820.0, '2020-03-03', 20200302, 20200303, '2020-05-07', 'USD', 'RV', 1.0, 12765.6, 20200303.0, 'NAGD', 1930586820.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US trust', 2020.0, 1930794588.0, '2020-04-24', 20200416, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 3322.08, 20200424.0, 'NAA8', 1930794588.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930818418.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 15822.96, 20200423.0, 'NAA8', 1930818418.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M associates', 2020.0, 2960625959.0, '2020-04-02', 20200402, 20200402, '2020-04-13', 'CAD', 'RV', 1.0, 4921.69, 20200403.0, 'CA10', 2960625959.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 3160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA systems', 2020.0, 1930607031.0, '2020-03-05', 20200305, 20200305, '2020-03-11', 'USD', 'RV', 1.0, 32577.47, 20200301.0, 'NAM2', 1930607031.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 3161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930782403.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 546.41, 20200414.0, 'NAH4', 1930782403.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 3162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200727272, 'BROOKS ', 2020.0, 1930671969.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 90664.0, 20200319.0, 'NAA8', 1930671969.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 3163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ in', 2020.0, 1930646936.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 102997.46, 20200313.0, 'NAA8', 1930646936.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930878399.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 9.0, 20200509.0, 'NAH4', 1930878399.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 3165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200500195, 'B K MI foundation', 2020.0, 1930595895.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 14684.5, 20200303.0, 'NAA8', 1930595895.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO us', 2020.0, 1930764482.0, '2020-04-15', 20200408, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 30316.62, 20200415.0, 'NAA8', 1930764482.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930777726.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 14924.73, 20200412.0, 'NAH4', 1930777726.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER ', 2020.0, 1930620903.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 100498.66, 20200308.0, 'NAA8', 1930620903.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER associates', 2020.0, 1930738386.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 41514.69, 20200403.0, 'NAA8', 1930738386.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930601596.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 50277.18, 20200307.0, 'NAH4', 1930601596.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO systems', 2020.0, 2960620647.0, '2020-03-14', 20200314, 20200314, '2020-03-26', 'CAD', 'RV', 1.0, 138477.61, 20200316.0, 'CA10', 2960620647.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 3172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930812786.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 15082.67, 20200423.0, 'NAH4', 1930812786.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 3173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930757543.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 60293.93, 20200408.0, 'NAH4', 1930757543.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corp', 2020.0, 1930838079.0, '2020-04-29', 20200429, 20200429, '2020-05-09', 'USD', 'RV', 1.0, 4605.26, 20200416.0, 'NAM4', 1930838079.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200920735, 'ALBERT associates', 2020.0, 1930637660.0, '2020-03-12', 20200311, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 19449.29, 20200312.0, 'NAGD', 1930637660.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU corporation', 2020.0, 1930746189.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 45045.24, 20200406.0, 'NAA8', 1930746189.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930731858.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 6094.58, 20200402.0, 'NAH4', 1930731858.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 3178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930685445.0, '2020-03-25', 20200322, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 12000.47, 20200325.0, 'NAH4', 1930685445.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930732013.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 341.28, 20200402.0, 'NAA8', 1930732013.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930739212.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 61.29, 20200403.0, 'NAH4', 1930739212.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930691550.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 5625.41, 20200325.0, 'NAH4', 1930691550.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW us', 2020.0, 1930797204.0, '2020-04-19', 20200416, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 64364.59, 20200419.0, 'NAA8', 1930797204.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 3183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930578010.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 687.54, 20200227.0, 'NAA8', 1930578010.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 3184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770677, 'KRAS ', 2020.0, 1930646979.0, '2020-03-16', 20200313, 20200316, '2020-05-20', 'USD', 'RV', 1.0, 21606.78, 20200316.0, 'NAGD', 1930646979.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 3185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960627936.0, '2020-04-14', 20200414, 20200414, '2020-04-25', 'CAD', 'RV', 1.0, 10811.74, 20200415.0, 'CA10', 2960627936.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 3186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200714710, 'SYSCO in', 2020.0, 1930635791.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 19742.89, 20200312.0, 'NAA8', 1930635791.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930719141.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 26230.94, 20200330.0, 'NAH4', 1930719141.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 3188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930698890.0, '2020-03-25', 20200325, 20200325, '2020-03-26', 'USD', 'RV', 1.0, 6399.82, 20200316.0, 'NAM2', 1930698890.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930774753.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 12572.65, 20200411.0, 'NAA8', 1930774753.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW associates', 2020.0, 1930751173.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 150760.0, 20200405.0, 'NAA8', 1930751173.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M in', 2020.0, 2960619478.0, '2020-03-11', 20200311, 20200311, '2020-03-21', 'CAD', 'RV', 1.0, 52511.04, 20200311.0, 'CA10', 2960619478.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 3192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930645443.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 41760.64, 20200313.0, 'NAA8', 1930645443.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG associates', 2020.0, 1930754250.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 81430.28, 20200406.0, 'NAA8', 1930754250.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 3194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930716175.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 16728.75, 20200331.0, 'NAA8', 1930716175.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960620890.0, '2020-03-15', 20200315, 20200315, '2020-04-02', 'CAD', 'RV', 1.0, 103723.74, 20200323.0, 'CA10', 2960620890.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 3196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930804236.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 84626.79, 20200422.0, 'NAAX', 1930804236.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW foundation', 2020.0, 1930826989.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 124396.76, 20200427.0, 'NAA8', 1930826989.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930692145.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 3034.63, 20200316.0, 'NAM4', 1930692145.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE associates', 2020.0, 1930605789.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 1099.65, 20200305.0, 'NAA8', 1930605789.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE ', 2020.0, 1930851619.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 20440.78, 20200502.0, 'NAA8', 1930851619.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 3201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930843154.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 26164.31, 20200501.0, 'NAH4', 1930843154.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930855690.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 43699.68, 20200506.0, 'NAH4', 1930855690.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930635833.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 47445.76, 20200312.0, 'NAA8', 1930635833.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG systems', 2020.0, 1930685659.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 15313.4, 20200324.0, 'NAA8', 1930685659.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO corp', 2020.0, 1930770871.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 23863.94, 20200409.0, 'NAA8', 1930770871.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200984794, 'GREA systems', 2020.0, 1930838639.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 16670.12, 20200429.0, 'NAA8', 1930838639.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 3207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930752801.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 1193.42, 20200407.0, 'NAH4', 1930752801.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC co', 2020.0, 2960622444.0, '2020-03-19', 20200320, 20200319, '2020-03-30', 'CAD', 'RV', 1.0, 73398.1, 20200320.0, 'CA10', 2960622444.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 3209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930764032.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 26440.54, 20200408.0, 'NAH4', 1930764032.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 3210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930642866.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3702.52, 20200313.0, 'NAH4', 1930642866.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S corp', 2020.0, 1930880530.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 3193.82, 20200508.0, 'NAA8', 1930880530.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY systems', 2020.0, 1930791336.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 13137.47, 20200416.0, 'NAC6', 1930791336.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930599421.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 663.27, 20200304.0, 'NAA8', 1930599421.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200200412, 'DRIS corporation', 2020.0, 1930783248.0, '2020-04-16', 20200414, 20200416, '2020-05-06', 'USD', 'RV', 1.0, 11518.43, 20200416.0, 'NAD1', 1930783248.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW associates', 2020.0, 1930809925.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 66947.6, 20200421.0, 'NAA8', 1930809925.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930665192.0, '2020-03-24', 20200320, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 38464.32, 20200324.0, 'NAA8', 1930665192.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930747160.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 24673.74, 20200406.0, 'NAH4', 1930747160.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930883526.0, '2020-05-11', 20200509, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 45152.81, 20200511.0, 'NAH4', 1930883526.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 3219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930624100.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 82511.68, 20200309.0, 'NAA8', 1930624100.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930685219.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 49081.17, 20200322.0, 'NAA8', 1930685219.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200457993, 'SHAM ', 2020.0, 1930605474.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 349.7, 20200305.0, 'NAA8', 1930605474.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930844008.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 54613.8, 20200501.0, 'NAH4', 1930844008.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739534, 'OK ', 2020.0, 1930725982.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 82274.07, 20200331.0, 'NAA8', 1930725982.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 3224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ llc', 2020.0, 1930640907.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 80542.51, 20200311.0, 'NAA8', 1930640907.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930683141.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 63039.68, 20200323.0, 'NAH4', 1930683141.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 3226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930619600.0, '2020-03-10', 20200307, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 8707.84, 20200310.0, 'NAH4', 1930619600.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930701029.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 12897.76, 20200401.0, 'NAA8', 1930701029.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930572404.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 25547.34, 20200227.0, 'NAH4', 1930572404.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 3229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930752554.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 51434.39, 20200405.0, 'NAH4', 1930752554.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US llc', 2020.0, 1930670144.0, '2020-03-18', 20200318, 20200318, '2020-04-19', 'USD', 'RV', 1.0, 18101.59, 20200318.0, 'NA32', 1930670144.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 3231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930688046.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 24133.9, 20200324.0, 'NAH4', 1930688046.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930720700.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 49287.25, 20200401.0, 'NAA8', 1930720700.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 3233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930637588.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 13855.84, 20200313.0, 'NAA8', 1930637588.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100016691, 'BAY ', 2020.0, 1930687248.0, '2020-03-23', 20200323, 20200323, '2020-04-22', 'USD', 'RV', 1.0, 15088.0, 20200323.0, 'NAD5', 1930687248.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930754211.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 412.72, 20200407.0, 'NAA8', 1930754211.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930670438.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 102409.47, 20200318.0, 'NAA8', 1930670438.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930773909.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 73315.52, 20200410.0, 'NAA8', 1930773909.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036318, 'TFC corporation', 2020.0, 1930860943.0, '2020-05-05', 20200505, 20200505, '2020-05-15', 'USD', 'RV', 1.0, 4025.0, 20200505.0, 'NA10', 1930860943.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930716942.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 13422.42, 20200330.0, 'NAH4', 1930716942.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930812753.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 43479.83, 20200424.0, 'NAH4', 1930812753.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930794062.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 53596.52, 20200416.0, 'NAAX', 1930794062.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930681356.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 27440.3, 20200322.0, 'NAH4', 1930681356.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930825378.0, '2020-04-27', 20200424, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 36629.91, 20200427.0, 'NAH4', 1930825378.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 3244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS associates', 2020.0, 1930689684.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 5783.65, 20200323.0, 'NAA8', 1930689684.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U005', 0100025658, 'PEA corporation', 2020.0, 1930804221.0, '2020-04-21', 20200420, 20200421, '2020-05-21', 'USD', 'RV', 1.0, 10547.11, 20200421.0, 'NAD5', 1930804221.0, 1, '2020-05-31', '0-15 days' ); /* INSERT QUERY NO: 3246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960626303.0, '2020-04-02', 20200402, 20200402, '2020-04-18', 'CAD', 'RV', 1.0, 227428.65, 20200408.0, 'CA10', 2960626303.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 3247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200983712, 'FAMOS in', 2020.0, 1930767523.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 65737.7, 20200409.0, 'NAA8', 1930767523.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930645438.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 14070.44, 20200314.0, 'NAH4', 1930645438.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930776846.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 13268.38, 20200412.0, 'NAH4', 1930776846.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE systems', 2020.0, 1930709588.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 7064.61, 20200331.0, 'NAA8', 1930709588.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930814072.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 24618.76, 20200423.0, 'NAH4', 1930814072.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 3252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930845892.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 12439.02, 20200502.0, 'NAH4', 1930845892.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 3253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930842375.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 8451.06, 20200501.0, 'NAH4', 1930842375.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER us', 2020.0, 1930829033.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 80116.07, 20200428.0, 'NAA8', 1930829033.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 3255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960620602.0, '2020-03-12', 20200312, 20200312, '2020-03-25', 'CAD', 'RV', 1.0, 68498.37, 20200315.0, 'CA10', 2960620602.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 3256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140103278, 'COS foundation', 2020.0, 1991839549.0, '2020-03-08', 20200304, 20200308, '2020-05-07', 'USD', 'RV', 1.0, 17325.0, 20200308.0, 'NAUZ', 1991839549.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 3257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930804631.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 109438.1, 20200422.0, 'NAA8', 1930804631.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 3258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930742911.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 289.56, 20200404.0, 'NAH4', 1930742911.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA llc', 2020.0, 1930823627.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 4760.32, 20200416.0, 'NAM4', 1930823627.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930577748.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 551.81, 20200227.0, 'NAA8', 1930577748.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 3261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960619533.0, '2020-03-13', 20200313, 20200313, '2020-03-26', 'CAD', 'RV', 1.0, 63510.37, 20200316.0, 'CA10', 2960619533.0, 1, '2020-03-30', '0-15 days' ); /* INSERT QUERY NO: 3262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930642277.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 4277.2, 20200313.0, 'NAC6', 1930642277.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930732417.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 8867.75, 20200401.0, 'NAH4', 1930732417.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930630500.0, '2020-03-07', 20200310, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 335.96, 20200307.0, 'NAA8', 1930630500.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930654263.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 42950.29, 20200316.0, 'NAH4', 1930654263.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M ', 2020.0, 1930654460.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 110833.08, 20200316.0, 'NAA8', 1930654460.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930794301.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 7596.47, 20200416.0, 'NAH4', 1930794301.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930791267.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 101970.33, 20200417.0, 'NAA8', 1930791267.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 3269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930683405.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 14182.73, 20200323.0, 'NAH4', 1930683405.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 3270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930690836.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 19007.97, 20200324.0, 'NAH4', 1930690836.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200768357, 'MARC corporation', 2020.0, 1930708682.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 25458.66, 20200327.0, 'NAA8', 1930708682.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930811498.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 4657.56, 20200416.0, 'NAM4', 1930811498.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 3273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930719787.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 4678.62, 20200330.0, 'NAH4', 1930719787.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 3274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930620785.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 24948.43, 20200309.0, 'NAH4', 1930620785.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930701799.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 13976.96, 20200325.0, 'NAH4', 1930701799.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930883757.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 2068.91, 20200510.0, 'NAH4', 1930883757.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 3277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930692560.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 74675.39, 20200324.0, 'NAAX', 1930692560.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930764044.0, '2020-04-15', 20200408, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 2147.58, 20200415.0, 'NAH4', 1930764044.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930685024.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 3612.31, 20200323.0, 'NAH4', 1930685024.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783609, 'PROFIC foundation', 2020.0, 1930637591.0, '2020-03-18', 20200311, 20200318, '2020-04-19', 'USD', 'RV', 1.0, 11501.0, 20200318.0, 'NA32', 1930637591.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC foundation', 2020.0, 1930774255.0, '2020-04-15', 20200410, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 7572.0, 20200415.0, 'NAA8', 1930774255.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M llc', 2020.0, 1930636936.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 134738.28, 20200311.0, 'NAA8', 1930636936.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930833567.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 2101.84, 20200428.0, 'NAU5', 1930833567.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC us', 2020.0, 2960619815.0, '2020-03-09', 20200309, 20200309, '2020-03-20', 'CAD', 'RV', 1.0, 201.36, 20200310.0, 'CA10', 2960619815.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 3285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930682330.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 1898.9, 20200321.0, 'NAH4', 1930682330.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC ', 2020.0, 1930761187.0, '2020-04-08', 20200408, 20200408, '2020-04-11', 'USD', 'RV', 1.0, 23842.91, 20200401.0, 'NAM2', 1930761187.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930827783.0, '2020-04-28', 20200426, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 76307.33, 20200428.0, 'NAH4', 1930827783.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 3288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930660600.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 943.12, 20200316.0, 'NAH4', 1930660600.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC trust', 2020.0, 1930599758.0, '2020-03-04', 20200304, 20200304, '2020-03-08', 'USD', 'RV', 1.0, 4944.97, 20200301.0, 'NAM1', 1930599758.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 3290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930861845.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 3886.51, 20200505.0, 'NAH4', 1930861845.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930647479.0, '2020-03-16', 20200313, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 15914.3, 20200316.0, 'NAH4', 1930647479.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930715655.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 14524.43, 20200330.0, 'NAH4', 1930715655.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930842586.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 68937.74, 20200430.0, 'NAH4', 1930842586.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 3294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930676130.0, '2020-03-24', 20200320, 20200324, '2020-03-24', 'USD', 'RV', 1.0, 2113.55, 20200324.0, 'NAX2', 1930676130.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 3295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET associates', 2020.0, 1930791258.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 1269.3, 20200416.0, 'NAA8', 1930791258.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 3296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930586347.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 20198.77, 20200304.0, 'NAH4', 1930586347.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC trust', 2020.0, 1930842077.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 3927.57, 20200505.0, 'NAA8', 1930842077.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 3298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106209, 'SNOW C trust', 2020.0, 2960631005.0, '2020-04-25', 20200425, 20200425, '2020-05-15', 'CAD', 'RV', 1.0, 11642.4, 20200505.0, 'CA10', 2960631005.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 3299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO corp', 2020.0, 1930688008.0, '2020-03-23', 20200323, 20200323, '2020-04-23', 'USD', 'RV', 1.0, 7522.48, 20200323.0, 'NA3B', 1930688008.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930646181.0, '2020-03-12', 20200312, 20200312, '2020-04-01', 'USD', 'RV', 1.0, 114323.75, 20200312.0, 'NAD1', 1930646181.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930774199.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 248.47, 20200411.0, 'NAA8', 1930774199.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930831894.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 6370.47, 20200428.0, 'NAH4', 1930831894.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 3303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA corp', 2020.0, 1930631951.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 12470.89, 20200310.0, 'NAA8', 1930631951.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930782055.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 10516.28, 20200413.0, 'NAH4', 1930782055.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930732926.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 412.57, 20200403.0, 'NAA8', 1930732926.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930704391.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 9416.62, 20200327.0, 'NAA8', 1930704391.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER systems', 2020.0, 1930687631.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 17283.5, 20200325.0, 'NAA8', 1930687631.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930683231.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 13324.42, 20200323.0, 'NAH4', 1930683231.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 3309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO systems', 2020.0, 2960621231.0, '2020-03-15', 20200315, 20200315, '2020-03-27', 'CAD', 'RV', 1.0, 44374.63, 20200317.0, 'CA10', 2960621231.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 3310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930698735.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 19516.55, 20200326.0, 'NAA8', 1930698735.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930842510.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 33740.01, 20200430.0, 'NAH4', 1930842510.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 3312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930788151.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 12640.83, 20200417.0, 'NAA8', 1930788151.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST ', 2020.0, 1930861789.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 19780.42, 20200506.0, 'NAAX', 1930861789.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930587521.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 5037.44, 20200303.0, 'NAH4', 1930587521.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930689371.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 13065.2, 20200325.0, 'NAH4', 1930689371.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE trust', 2020.0, 1930853271.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 91730.31, 20200502.0, 'NAA8', 1930853271.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 3317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA foundation', 2020.0, 1930700595.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 42120.58, 20200325.0, 'NAH4', 1930700595.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 3318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO systems', 2020.0, 2960617356.0, '2020-03-04', 20200304, 20200304, '2020-03-16', 'CAD', 'RV', 1.0, 6375.53, 20200306.0, 'CA10', 2960617356.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 3319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930832309.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 2272.77, 20200428.0, 'NAH4', 1930832309.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 3320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930720531.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 8855.49, 20200331.0, 'NAA8', 1930720531.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930662024.0, '2020-03-20', 20200317, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 9222.81, 20200320.0, 'NAA8', 1930662024.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930661713.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 602.04, 20200318.0, 'NAH4', 1930661713.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 3323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ us', 2020.0, 1930802336.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 54445.7, 20200419.0, 'NAA8', 1930802336.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 3324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER co', 2020.0, 1930704604.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 45288.85, 20200327.0, 'NAA8', 1930704604.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH trust', 2020.0, 1930687932.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 85470.94, 20200323.0, 'NAA8', 1930687932.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930684216.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 55025.47, 20200322.0, 'NAH4', 1930684216.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960617386.0, '2020-03-07', 20200307, 20200307, '2020-03-20', 'CAD', 'RV', 1.0, 147552.2, 20200310.0, 'CA10', 2960617386.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 3328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930780366.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 5593.56, 20200414.0, 'NAH4', 1930780366.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 3329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930780396.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 14204.38, 20200415.0, 'NAAX', 1930780396.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE llc', 2020.0, 1930804305.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 8099.52, 20200421.0, 'NAA8', 1930804305.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100011958, 'IND llc', 2020.0, 1991840903.0, '2020-03-10', 20200309, 20200310, '2020-04-24', 'USD', 'RV', 1.0, 5706.9, 20200310.0, 'NAVF', 1991840903.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 3332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930606548.0, '2020-03-09', 20200305, 20200309, '2020-05-13', 'USD', 'RV', 1.0, 209.53, 20200309.0, 'NAGD', 1930606548.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 3333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793122, 'PIGGLY us', 2020.0, 1930846673.0, '2020-05-06', 20200502, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 1990.17, 20200506.0, 'NAA8', 1930846673.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 3334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER corporation', 2020.0, 1930637200.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 65768.48, 20200311.0, 'NAA8', 1930637200.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930665021.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 41691.68, 20200317.0, 'NAA8', 1930665021.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930845782.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 4797.54, 20200501.0, 'NAH4', 1930845782.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO corporation', 2020.0, 2960624912.0, '2020-03-30', 20200330, 20200330, '2020-04-10', 'CAD', 'RV', 1.0, 124505.19, 20200331.0, 'CA10', 2960624912.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 3338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC ', 2020.0, 1930788938.0, '2020-04-15', 20200415, 20200415, '2020-04-11', 'USD', 'RV', 1.0, 18483.84, 20200401.0, 'NAM2', 1930788938.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104225, 'SAVE-ON- ', 2020.0, 2960625772.0, '2020-04-01', 20200401, 20200401, '2020-04-11', 'CAD', 'RV', 1.0, 68063.54, 20200401.0, 'CA10', 2960625772.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 3340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930799697.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 187.73, 20200419.0, 'NAH4', 1930799697.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE foundation', 2020.0, 1930820481.0, '2020-04-30', 20200423, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 5894.04, 20200430.0, 'NAA8', 1930820481.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106293, 'ATLANT corp', 2020.0, 2960622357.0, '2020-03-19', 20200319, 20200319, '2020-04-06', 'CAD', 'RV', 1.0, 39.32, 20200327.0, 'CA10', 2960622357.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 3343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930706992.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 2956.0, 20200327.0, 'NAH4', 1930706992.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930655141.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 53795.32, 20200316.0, 'NAA8', 1930655141.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 3345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO corp', 2020.0, 1930732476.0, '2020-04-03', 20200402, 20200403, '2020-04-13', 'USD', 'RV', 1.0, 18135.88, 20200403.0, 'NA10', 1930732476.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930767890.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 15026.34, 20200409.0, 'NAA8', 1930767890.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930883957.0, '2020-05-12', 20200510, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 81161.92, 20200512.0, 'NAH4', 1930883957.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 3348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU in', 2020.0, 1930831705.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 1125.97, 20200428.0, 'NAA8', 1930831705.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR in', 2020.0, 1930857952.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 11187.89, 20200505.0, 'NAA8', 1930857952.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930673702.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 82117.44, 20200319.0, 'NAA8', 1930673702.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930583999.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 6704.32, 20200301.0, 'NAH4', 1930583999.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930651173.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 9320.13, 20200314.0, 'NAH4', 1930651173.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA corporation', 2020.0, 1930647060.0, '2020-03-18', 20200313, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 6903.71, 20200318.0, 'NAA8', 1930647060.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930752579.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 44497.17, 20200405.0, 'NAH4', 1930752579.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930653617.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 13312.98, 20200315.0, 'NAH4', 1930653617.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930699711.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 20923.24, 20200326.0, 'NAH4', 1930699711.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 3357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F in', 2020.0, 1930703294.0, '2020-03-26', 20200326, 20200326, '2020-03-26', 'USD', 'RV', 1.0, 14700.97, 20200326.0, 'NAX2', 1930703294.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 3358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930620381.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 19405.31, 20200310.0, 'NAC6', 1930620381.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930780109.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 97666.11, 20200412.0, 'NAC6', 1930780109.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 3360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930815114.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 41853.83, 20200424.0, 'NAH4', 1930815114.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930724498.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 38590.82, 20200401.0, 'NAH4', 1930724498.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S llc', 2020.0, 1930655683.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 107.19, 20200317.0, 'NAA8', 1930655683.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU in', 2020.0, 1930719090.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 163833.18, 20200401.0, 'NAA8', 1930719090.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930801146.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 2474.01, 20200420.0, 'NAH4', 1930801146.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M systems', 2020.0, 2960619303.0, '2020-03-06', 20200306, 20200306, '2020-03-17', 'CAD', 'RV', 1.0, 71531.48, 20200307.0, 'CA10', 2960619303.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 3366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930584064.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 123889.48, 20200301.0, 'NAA8', 1930584064.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 3367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930788047.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 38456.4, 20200416.0, 'NAA8', 1930788047.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE trust', 2020.0, 1930703675.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 179999.88, 20200327.0, 'NAA8', 1930703675.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930681174.0, '2020-03-25', 20200321, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 14853.85, 20200325.0, 'NAA8', 1930681174.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930603004.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 14277.49, 20200305.0, 'NAH4', 1930603004.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE in', 2020.0, 1930593423.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 108641.15, 20200303.0, 'NAA8', 1930593423.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER trust', 2020.0, 1930779643.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 75568.19, 20200413.0, 'NAA8', 1930779643.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 3373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930674522.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 11056.26, 20200316.0, 'NAM2', 1930674522.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER llc', 2020.0, 1930764653.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 2382.55, 20200408.0, 'NAA8', 1930764653.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739941, 'FOX llc', 2020.0, 1930763801.0, '2020-04-07', 20200408, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 6719.03, 20200407.0, 'NAA8', 1930763801.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930792917.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 2326.08, 20200416.0, 'NAH4', 1930792917.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C in', 2020.0, 1930759301.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 40074.52, 20200409.0, 'NAA8', 1930759301.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200076137, 'OLLIE in', 2020.0, 1930861977.0, '2020-05-12', 20200506, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 10472.0, 20200512.0, 'NAA8', 1930861977.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 3379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930782142.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 27448.56, 20200414.0, 'NAH4', 1930782142.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 3380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930632719.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 6965.1, 20200310.0, 'NAH4', 1930632719.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960622131.0, '2020-03-18', 20200318, 20200318, '2020-04-06', 'CAD', 'RV', 1.0, 116812.63, 20200327.0, 'CA10', 2960622131.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 3382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930648133.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 46515.1, 20200313.0, 'NAH4', 1930648133.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930624061.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 57656.25, 20200311.0, 'NAH4', 1930624061.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corp', 2020.0, 1930825474.0, '2020-04-24', 20200425, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 16713.06, 20200424.0, 'NAA8', 1930825474.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930790892.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 7542.66, 20200416.0, 'NAH4', 1930790892.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930700102.0, '2020-03-25', 20200325, 20200325, '2020-04-08', 'USD', 'RV', 1.0, 529.92, 20200316.0, 'NAM4', 1930700102.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930832145.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 59352.68, 20200427.0, 'NAC6', 1930832145.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930595950.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 4272.16, 20200304.0, 'NAH4', 1930595950.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200622385, 'US us', 2020.0, 1930635627.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 53561.29, 20200313.0, 'NAA8', 1930635627.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930732535.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 18378.14, 20200403.0, 'NAC6', 1930732535.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930630729.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 5170.53, 20200311.0, 'NAA8', 1930630729.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930638052.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 123896.83, 20200313.0, 'NAA8', 1930638052.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930566538.0, '2020-02-28', 20200225, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 31164.99, 20200228.0, 'NAAX', 1930566538.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 3394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930779020.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 74536.48, 20200412.0, 'NAA8', 1930779020.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT systems', 2020.0, 1930580726.0, '2020-02-28', 20200227, 20200228, '2020-04-03', 'USD', 'RV', 1.0, 8496.0, 20200228.0, 'NAG2', 1930580726.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC foundation', 2020.0, 1930599554.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 165.48, 20200301.0, 'NAM4', 1930599554.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930829666.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 36357.49, 20200427.0, 'NAH4', 1930829666.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 3398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200609331, 'KROG foundation', 2020.0, 1930719663.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 13251.17, 20200330.0, 'NAA8', 1930719663.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W co', 2020.0, 1930808458.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 20862.81, 20200420.0, 'NAC6', 1930808458.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930725477.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 579.82, 20200331.0, 'NAU5', 1930725477.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930790976.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 7971.36, 20200416.0, 'NAH4', 1930790976.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO ', 2020.0, 2960632020.0, '2020-04-30', 20200430, 20200430, '2020-05-16', 'CAD', 'RV', 1.0, 4151.28, 20200506.0, 'CA10', 2960632020.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930746895.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 34180.72, 20200406.0, 'NAA8', 1930746895.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 3404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930774435.0, '2020-04-03', 20200410, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 511.92, 20200403.0, 'NAA8', 1930774435.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU ', 2020.0, 1930671721.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 314.8, 20200319.0, 'NAA8', 1930671721.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930756990.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 21236.84, 20200407.0, 'NAC6', 1930756990.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930796280.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 38101.72, 20200419.0, 'NAH4', 1930796280.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930818909.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 9966.31, 20200425.0, 'NAH4', 1930818909.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930843115.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 167532.61, 20200501.0, 'NAC6', 1930843115.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK llc', 2020.0, 1930851776.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 59571.51, 20200502.0, 'NAA8', 1930851776.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT trust', 2020.0, 1930686817.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 90005.46, 20200323.0, 'NAA8', 1930686817.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930857379.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 9340.9, 20200507.0, 'NAH4', 1930857379.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 3413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701040, 'SOUTHE co', 2020.0, 1930577672.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 7285.51, 20200304.0, 'NAA8', 1930577672.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO trust', 2020.0, 2960626776.0, '2020-04-06', 20200406, 20200406, '2020-04-17', 'CAD', 'RV', 1.0, 59022.05, 20200407.0, 'CA10', 2960626776.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 3415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930747041.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 15706.09, 20200405.0, 'NAA8', 1930747041.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930665165.0, '2020-03-22', 20200319, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 14749.42, 20200322.0, 'NAH4', 1930665165.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0140049310, 'H T corp', 2020.0, 1930632493.0, '2020-03-10', 20200310, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 170.48, 20200310.0, 'NAGD', 1930632493.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930774266.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 190.38, 20200409.0, 'NAA8', 1930774266.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S corp', 2020.0, 1930796547.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 145343.52, 20200419.0, 'NAA8', 1930796547.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930672368.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 15346.43, 20200321.0, 'NAH4', 1930672368.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA trust', 2020.0, 1930877185.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 384.84, 20200501.0, 'NAM4', 1930877185.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 3422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO co', 2020.0, 2960623311.0, '2020-03-23', 20200323, 20200323, '2020-04-11', 'CAD', 'RV', 1.0, 32725.36, 20200401.0, 'CA10', 2960623311.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 3423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER trust', 2020.0, 1930850184.0, '2020-05-01', 20200502, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 55964.73, 20200501.0, 'NAA8', 1930850184.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 3424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930774545.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 6566.44, 20200410.0, 'NAH4', 1930774545.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930762253.0, '2020-04-08', 20200408, 20200408, '2020-04-24', 'USD', 'RV', 1.0, 219.48, 20200401.0, 'NAM4', 1930762253.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930606919.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 7287.08, 20200305.0, 'NAH4', 1930606919.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC llc', 2020.0, 1930599858.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 33242.99, 20200304.0, 'NAA8', 1930599858.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930780199.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 431.9, 20200413.0, 'NAH4', 1930780199.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792734, 'MDV/ foundation', 2020.0, 1930862011.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 63735.68, 20200506.0, 'NAA8', 1930862011.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930683335.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 93156.71, 20200321.0, 'NAA8', 1930683335.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930692638.0, '2020-03-27', 20200324, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 21209.1, 20200327.0, 'NAA8', 1930692638.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930778647.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 4773.54, 20200412.0, 'NAH4', 1930778647.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930802125.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 132663.77, 20200421.0, 'NAC6', 1930802125.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930703421.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 16566.08, 20200327.0, 'NAA8', 1930703421.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930737180.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 14679.71, 20200403.0, 'NAA8', 1930737180.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930872708.0, '2020-05-07', 20200507, 20200507, '2020-05-24', 'USD', 'RV', 1.0, 1432.68, 20200501.0, 'NAM4', 1930872708.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 3437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS foundation', 2020.0, 1930778756.0, '2020-04-12', 20200413, 20200412, '2020-06-16', 'USD', 'RV', 1.0, 2183.16, 20200412.0, 'NAGD', 1930778756.0, 1, '2020-06-12', 'early' ); /* INSERT QUERY NO: 3438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930876138.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 30416.69, 20200507.0, 'NAH4', 1930876138.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 3439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930636864.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 4272.86, 20200310.0, 'NAH4', 1930636864.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930645915.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 13780.56, 20200313.0, 'NAH4', 1930645915.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI llc', 2020.0, 1930727258.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 148074.41, 20200331.0, 'NAA8', 1930727258.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 3442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG trust', 2020.0, 1930818516.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 64560.0, 20200423.0, 'NAA8', 1930818516.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC us', 2020.0, 1930842925.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 16182.52, 20200506.0, 'NAA8', 1930842925.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 3444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930665598.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 49723.59, 20200318.0, 'NAH4', 1930665598.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 3445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC trust', 2020.0, 1930618509.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 81.0, 20200301.0, 'NAM4', 1930618509.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930768545.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 64706.34, 20200408.0, 'NAA8', 1930768545.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE corporation', 2020.0, 1930712247.0, '2020-04-02', 20200330, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 734.16, 20200402.0, 'NAA8', 1930712247.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER corp', 2020.0, 1930751337.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 20559.15, 20200406.0, 'NAA8', 1930751337.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 3449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930861731.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 43.61, 20200507.0, 'NAH4', 1930861731.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 3450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE us', 2020.0, 1930623457.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 1329.5, 20200311.0, 'NAA8', 1930623457.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US corp', 2020.0, 1930646408.0, '2020-03-12', 20200312, 20200312, '2020-04-01', 'USD', 'RV', 1.0, 18782.18, 20200312.0, 'NAD1', 1930646408.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT systems', 2020.0, 1930673952.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 14212.27, 20200319.0, 'NAU5', 1930673952.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 3453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200718130, 'SYSCO F foundation', 2020.0, 1930637925.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 71240.99, 20200311.0, 'NAA8', 1930637925.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930583282.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 934.3, 20200229.0, 'NAH4', 1930583282.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE trust', 2020.0, 1930636717.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 63161.17, 20200312.0, 'NAA8', 1930636717.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930718334.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 39799.51, 20200329.0, 'NAA8', 1930718334.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH corporation', 2020.0, 1930717882.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3083.13, 20200330.0, 'NAA8', 1930717882.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH corporation', 2020.0, 1930643594.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 17060.66, 20200314.0, 'NAA8', 1930643594.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930686438.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 69820.81, 20200323.0, 'NAH4', 1930686438.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930777841.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 15259.4, 20200412.0, 'NAH4', 1930777841.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930604687.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 58194.97, 20200305.0, 'NAH4', 1930604687.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930651029.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 49962.6, 20200314.0, 'NAH4', 1930651029.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC us', 2020.0, 1930817570.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 6660.16, 20200416.0, 'NAM4', 1930817570.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797984, 'PIGGLY llc', 2020.0, 1930681179.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 81421.15, 20200321.0, 'NAA8', 1930681179.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 3465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC corp', 2020.0, 2960622705.0, '2020-03-19', 20200319, 20200319, '2020-04-06', 'CAD', 'RV', 1.0, 3363.6, 20200327.0, 'CA10', 2960622705.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 3466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930747053.0, '2020-04-09', 20200404, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 13630.12, 20200409.0, 'NAH4', 1930747053.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 3467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930858153.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 36557.49, 20200506.0, 'NAH4', 1930858153.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930794200.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 4552.66, 20200415.0, 'NAH4', 1930794200.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930784388.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 372.16, 20200415.0, 'NAA8', 1930784388.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930748798.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 30857.59, 20200406.0, 'NAA8', 1930748798.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 3471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO systems', 2020.0, 2960627649.0, '2020-04-13', 20200413, 20200413, '2020-04-25', 'CAD', 'RV', 1.0, 142229.9, 20200415.0, 'CA10', 2960627649.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 3472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930702243.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 3031.47, 20200401.0, 'NAH4', 1930702243.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU llc', 2020.0, 1930770661.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 12594.86, 20200409.0, 'NAA8', 1930770661.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930694380.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 30220.01, 20200325.0, 'NAAX', 1930694380.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930811832.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 793.74, 20200416.0, 'NAM4', 1930811832.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 3476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corporation', 2020.0, 1930738818.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 14172.0, 20200404.0, 'NAA8', 1930738818.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE associates', 2020.0, 1930791311.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 23417.62, 20200415.0, 'NAA8', 1930791311.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 3478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930781293.0, '2020-04-16', 20200413, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 14983.75, 20200416.0, 'NAH4', 1930781293.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930583964.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 526.98, 20200301.0, 'NAH4', 1930583964.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200833713, 'JETRO co', 2020.0, 1930731410.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 76.06, 20200401.0, 'NAA8', 1930731410.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT associates', 2020.0, 1930643431.0, '2020-03-13', 20200312, 20200313, '2020-04-16', 'USD', 'RV', 1.0, 7723.2, 20200313.0, 'NAAW', 1930643431.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930635615.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 18366.12, 20200311.0, 'NAH4', 1930635615.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930776967.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 245.14, 20200412.0, 'NAH4', 1930776967.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930780973.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 23151.99, 20200413.0, 'NAH4', 1930780973.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corp', 2020.0, 1930814632.0, '2020-04-22', 20200422, 20200422, '2020-04-26', 'USD', 'RV', 1.0, 6350.37, 20200416.0, 'NAM2', 1930814632.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 3486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930687353.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 22050.9, 20200324.0, 'NAA8', 1930687353.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106181, 'THE us', 2020.0, 2960617170.0, '2020-02-28', 20200228, 20200228, '2020-03-16', 'CAD', 'RV', 1.0, 1294.38, 20200306.0, 'CA10', 2960617170.0, 1, '2020-03-17', '0-15 days' ); /* INSERT QUERY NO: 3488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930782204.0, '2020-04-13', 20200414, 20200413, '2020-05-28', 'USD', 'RV', 1.0, 135392.24, 20200413.0, 'NAWP', 1930782204.0, 1, '2020-05-29', '0-15 days' ); /* INSERT QUERY NO: 3489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930673280.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 22501.18, 20200319.0, 'NAA8', 1930673280.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930733150.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 17365.02, 20200404.0, 'NAH4', 1930733150.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930580335.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 563.38, 20200228.0, 'NAA8', 1930580335.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B us', 2020.0, 1930576630.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 5243.24, 20200229.0, 'NAA8', 1930576630.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 3493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960630910.0, '2020-04-26', 20200426, 20200426, '2020-05-07', 'CAD', 'RV', 1.0, 110567.91, 20200427.0, 'CA10', 2960630910.0, 1, '2020-05-11', '0-15 days' ); /* INSERT QUERY NO: 3494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930692136.0, '2020-03-24', 20200324, 20200324, '2020-04-27', 'USD', 'RV', 1.0, 7167.56, 20200324.0, 'NAAW', 1930692136.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930720011.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 10761.16, 20200331.0, 'NAH4', 1930720011.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930611230.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 15895.72, 20200306.0, 'NAH4', 1930611230.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200833713, 'JETRO ', 2020.0, 1930797809.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 6400.05, 20200417.0, 'NAA8', 1930797809.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200765011, 'MAINES llc', 2020.0, 1930903868.0, '2020-05-14', 20200514, 20200514, '2020-05-29', 'USD', 'RV', 1.0, 16099.2, 20200514.0, 'NAA8', 1930903868.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 3499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200795490, 'HY - us', 2020.0, 1930868441.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 43645.7, 20200506.0, 'NAA8', 1930868441.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F us', 2020.0, 2960625644.0, '2020-03-31', 20200331, 20200331, '2020-04-13', 'CAD', 'RV', 1.0, 1440.0, 20200403.0, 'CA10', 2960625644.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 3501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930693071.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 7358.49, 20200325.0, 'NAH4', 1930693071.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS us', 2020.0, 1930703967.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 1594.66, 20200325.0, 'NAA8', 1930703967.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR corp', 2020.0, 1930783101.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 141999.15, 20200413.0, 'NAA8', 1930783101.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 3504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930669674.0, '2020-03-21', 20200318, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 10703.1, 20200321.0, 'NAH4', 1930669674.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930621921.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 15089.26, 20200308.0, 'NAH4', 1930621921.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930687972.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 130370.24, 20200324.0, 'NAA8', 1930687972.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930692692.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 8518.0, 20200326.0, 'NAA8', 1930692692.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930878145.0, '2020-05-11', 20200508, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 47133.89, 20200511.0, 'NAH4', 1930878145.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 3509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930782615.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 113725.75, 20200414.0, 'NAC6', 1930782615.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 3510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB corporation', 2020.0, 2960623752.0, '2020-03-25', 20200325, 20200325, '2020-04-11', 'CAD', 'RV', 1.0, 99301.06, 20200401.0, 'CA10', 2960623752.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 3511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT llc', 2020.0, 1930708745.0, '2020-03-27', 20200326, 20200327, '2020-05-01', 'USD', 'RV', 1.0, 10786.5, 20200327.0, 'NAG2', 1930708745.0, 1, '2020-05-02', '0-15 days' ); /* INSERT QUERY NO: 3512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705372, 'FR associates', 2020.0, 1930676197.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 18929.01, 20200323.0, 'NAA8', 1930676197.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960631273.0, '2020-04-30', 20200430, 20200430, '2020-05-11', 'CAD', 'RV', 1.0, 55941.35, 20200501.0, 'CA10', 2960631273.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 3514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F corporation', 2020.0, 1930647488.0, '2020-03-13', 20200313, 20200313, '2020-03-13', 'USD', 'RV', 1.0, 3698.2, 20200313.0, 'NAX2', 1930647488.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 3515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S associates', 2020.0, 1930738477.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 25465.7, 20200404.0, 'NAA8', 1930738477.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930826576.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 11224.68, 20200427.0, 'NAH4', 1930826576.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 3517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE ', 2020.0, 1930714218.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 14983.37, 20200330.0, 'NAA8', 1930714218.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930857083.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 11185.15, 20200505.0, 'NAA8', 1930857083.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corporation', 2020.0, 1930706240.0, '2020-03-26', 20200326, 20200326, '2020-04-08', 'USD', 'RV', 1.0, 2272.66, 20200316.0, 'NAM4', 1930706240.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930685773.0, '2020-03-26', 20200323, 20200326, '2020-05-10', 'USD', 'RV', 1.0, 86631.68, 20200326.0, 'NAWP', 1930685773.0, 1, '2020-05-11', '0-15 days' ); /* INSERT QUERY NO: 3521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930818594.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 52385.01, 20200424.0, 'NAH4', 1930818594.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930875869.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 50417.04, 20200507.0, 'NAH4', 1930875869.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 3523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO trust', 2020.0, 1930570749.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 10314.24, 20200228.0, 'NAA8', 1930570749.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB corporation', 2020.0, 2960624933.0, '2020-03-31', 20200331, 20200331, '2020-04-18', 'CAD', 'RV', 1.0, 42341.23, 20200408.0, 'CA10', 2960624933.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 3525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE co', 2020.0, 1930742696.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 24186.82, 20200403.0, 'NAA8', 1930742696.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930787751.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 20194.87, 20200414.0, 'NAU5', 1930787751.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE us', 2020.0, 1930683329.0, '2020-03-24', 20200321, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 12446.78, 20200324.0, 'NAA8', 1930683329.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930801823.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 3403.8, 20200420.0, 'NAH4', 1930801823.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930672719.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 15726.96, 20200320.0, 'NAH4', 1930672719.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930668595.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 1898.9, 20200320.0, 'NAH4', 1930668595.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER corporation', 2020.0, 1930778077.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 127298.82, 20200411.0, 'NAA8', 1930778077.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930745487.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 31744.24, 20200406.0, 'NAH4', 1930745487.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930624681.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 115547.68, 20200310.0, 'NAA8', 1930624681.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC co', 2020.0, 1930599453.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 2064.29, 20200301.0, 'NAM2', 1930599453.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930730858.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 257.51, 20200402.0, 'NAA8', 1930730858.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930723659.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 10684.89, 20200331.0, 'NAH4', 1930723659.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC associates', 2020.0, 1930604770.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 159.72, 20200301.0, 'NAM4', 1930604770.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER us', 2020.0, 1930799195.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 16818.28, 20200421.0, 'NAA8', 1930799195.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 3539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930780943.0, '2020-04-11', 20200413, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 58198.66, 20200411.0, 'NAA8', 1930780943.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930690621.0, '2020-03-24', 20200324, 20200324, '2020-03-23', 'USD', 'RV', 1.0, 4815.97, 20200316.0, 'NAM1', 1930690621.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930745633.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 23184.56, 20200404.0, 'NAA8', 1930745633.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 3542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC llc', 2020.0, 1930763224.0, '2020-04-08', 20200408, 20200408, '2020-04-24', 'USD', 'RV', 1.0, 28324.84, 20200401.0, 'NAM4', 1930763224.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930749680.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 12220.05, 20200406.0, 'NAH4', 1930749680.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930780005.0, '2020-04-14', 20200412, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 6962.81, 20200414.0, 'NAH4', 1930780005.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 3545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930809217.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 49318.19, 20200421.0, 'NAH4', 1930809217.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930832363.0, '2020-04-30', 20200428, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2170.17, 20200430.0, 'NAH4', 1930832363.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 3547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930652411.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 246.33, 20200315.0, 'NAH4', 1930652411.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930685362.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 1898.9, 20200323.0, 'NAH4', 1930685362.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 3549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930720200.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 13616.21, 20200401.0, 'NAH4', 1930720200.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930719124.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 9563.15, 20200330.0, 'NAC6', 1930719124.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930809293.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 313.55, 20200422.0, 'NAA8', 1930809293.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960619174.0, '2020-03-10', 20200311, 20200310, '2020-03-21', 'CAD', 'RV', 1.0, 53683.56, 20200311.0, 'CA10', 2960619174.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 3553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930793787.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 773.06, 20200416.0, 'NAA8', 1930793787.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH foundation', 2020.0, 1930859995.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 9686.84, 20200505.0, 'NAA8', 1930859995.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 3555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930697893.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 33287.93, 20200325.0, 'NAH4', 1930697893.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT systems', 2020.0, 1930669765.0, '2020-03-20', 20200318, 20200320, '2020-04-24', 'USD', 'RV', 1.0, 23868.0, 20200320.0, 'NAG2', 1930669765.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corporation', 2020.0, 1930760198.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 2518.72, 20200408.0, 'NAA8', 1930760198.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930793103.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 2263.22, 20200416.0, 'NAH4', 1930793103.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA systems', 2020.0, 1930575327.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 1301.25, 20200227.0, 'NAA8', 1930575327.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW llc', 2020.0, 1930835488.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 79619.07, 20200429.0, 'NAA8', 1930835488.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 3561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930822919.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 40416.96, 20200425.0, 'NAH4', 1930822919.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE co', 2020.0, 1930619299.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 44867.74, 20200307.0, 'NAA8', 1930619299.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- trust', 2020.0, 2960619231.0, '2020-03-09', 20200309, 20200309, '2020-03-20', 'CAD', 'RV', 1.0, 103933.02, 20200310.0, 'CA10', 2960619231.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 3564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960624123.0, '2020-03-24', 20200326, 20200324, '2020-04-05', 'CAD', 'RV', 1.0, 58985.63, 20200326.0, 'CA10', 2960624123.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 3565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS us', 2020.0, 1930565250.0, '2020-02-28', 20200224, 20200228, '2020-04-03', 'USD', 'RV', 1.0, 10337.28, 20200228.0, 'NAG2', 1930565250.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930677049.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 21518.11, 20200321.0, 'NAH4', 1930677049.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930630198.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 10928.7, 20200310.0, 'NAA8', 1930630198.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930624526.0, '2020-03-13', 20200309, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 36843.43, 20200313.0, 'NAAX', 1930624526.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930659296.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 10416.58, 20200317.0, 'NAH4', 1930659296.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930769279.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 280.92, 20200401.0, 'NAM4', 1930769279.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 3571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930683405.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 14182.73, 20200323.0, 'NAH4', 1930683405.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 3572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930779218.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 15686.93, 20200412.0, 'NAA8', 1930779218.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930741162.0, '2020-04-07', 20200403, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 8793.09, 20200407.0, 'NAAX', 1930741162.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930758839.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 50590.18, 20200407.0, 'NAH4', 1930758839.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930670440.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 49118.23, 20200319.0, 'NAA8', 1930670440.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corporation', 2020.0, 1930586779.0, '2020-03-02', 20200302, 20200302, '2020-03-24', 'USD', 'RV', 1.0, 6147.44, 20200301.0, 'NAM4', 1930586779.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763489, 'GENERAL co', 2020.0, 1930832696.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 86115.93, 20200428.0, 'NAA8', 1930832696.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930665870.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 3357.41, 20200319.0, 'NAC6', 1930665870.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930585345.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 7474.31, 20200302.0, 'NAH4', 1930585345.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 3580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930779667.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 102.96, 20200415.0, 'NAA8', 1930779667.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930830565.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 86.26, 20200428.0, 'NAH4', 1930830565.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 3582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930810381.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 114839.01, 20200422.0, 'NAC6', 1930810381.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US systems', 2020.0, 1930638500.0, '2020-03-11', 20200311, 20200311, '2020-03-31', 'USD', 'RV', 1.0, 20048.35, 20200311.0, 'NAD1', 1930638500.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930652391.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 8117.07, 20200315.0, 'NAA8', 1930652391.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F trust', 2020.0, 1930672923.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 2119.33, 20200319.0, 'NAA8', 1930672923.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930827743.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 471.56, 20200425.0, 'NAH4', 1930827743.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200697207, 'WA corp', 2020.0, 1930629698.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 42260.02, 20200310.0, 'NAA8', 1930629698.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930856885.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 1380.4, 20200505.0, 'NAA8', 1930856885.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC llc', 2020.0, 2960621204.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'CAD', 'RV', 1.0, 53245.17, 20200319.0, 'CA10', 2960621204.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 3590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR corp', 2020.0, 1930760405.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 41399.07, 20200409.0, 'NAA8', 1930760405.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930830166.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 5219.35, 20200428.0, 'NAH4', 1930830166.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 3592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO co', 2020.0, 1930637108.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 13269.86, 20200312.0, 'NAA8', 1930637108.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930707386.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 9810.11, 20200326.0, 'NAH4', 1930707386.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 3594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930705514.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 6532.6, 20200327.0, 'NAH4', 1930705514.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT foundation', 2020.0, 1930801402.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 29648.45, 20200419.0, 'NAA8', 1930801402.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930583198.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 13045.83, 20200301.0, 'NAC6', 1930583198.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 3597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930751853.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 17618.18, 20200406.0, 'NAH4', 1930751853.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ co', 2020.0, 1930785784.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 5473.72, 20200414.0, 'NAA8', 1930785784.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO trust', 2020.0, 2960634235.0, '2020-05-12', 20200512, 20200512, '2020-05-23', 'CAD', 'RV', 1.0, 26096.71, 20200513.0, 'CA10', 2960634235.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 3600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930609484.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 53021.32, 20200306.0, 'NAH4', 1930609484.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 100011958, 'IND in', 2020.0, 1991840648.0, '2020-04-08', 20200406, 20200408, '2020-05-23', 'USD', 'RV', 1.0, 9260.56, 20200408.0, 'NAVF', 1991840648.0, 1, '2020-06-02', '0-15 days' ); /* INSERT QUERY NO: 3602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU co', 2020.0, 1930854566.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 52971.99, 20200506.0, 'NAA8', 1930854566.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 3603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930799774.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 51998.44, 20200418.0, 'NAH4', 1930799774.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS systems', 2020.0, 1930773365.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 70571.29, 20200409.0, 'NAA8', 1930773365.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S in', 2020.0, 1930716380.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 144606.17, 20200329.0, 'NAA8', 1930716380.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930584146.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 222.98, 20200301.0, 'NAA8', 1930584146.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 3607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104552, 'THE NO systems', 2020.0, 2960626503.0, '2020-04-02', 20200402, 20200402, '2020-04-18', 'CAD', 'RV', 1.0, 15336.22, 20200408.0, 'CA10', 2960626503.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 3608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER associates', 2020.0, 1930823565.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 75831.19, 20200427.0, 'NAA8', 1930823565.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER ', 2020.0, 1930819506.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 57154.41, 20200424.0, 'NAA8', 1930819506.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943275, 'US systems', 2020.0, 1930583971.0, '2020-03-03', 20200229, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 17021.35, 20200303.0, 'NAA8', 1930583971.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 3611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO llc', 2020.0, 2960622867.0, '2020-03-23', 20200323, 20200323, '2020-04-04', 'CAD', 'RV', 1.0, 117119.84, 20200325.0, 'CA10', 2960622867.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 3612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC corp', 2020.0, 2960628263.0, '2020-04-14', 20200414, 20200414, '2020-04-27', 'CAD', 'RV', 1.0, 29961.59, 20200417.0, 'CA10', 2960628263.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 3613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930674741.0, '2020-03-20', 20200320, 20200320, '2020-03-23', 'USD', 'RV', 1.0, 15912.05, 20200316.0, 'NAM1', 1930674741.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930885554.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 10956.26, 20200512.0, 'NAH4', 1930885554.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 3615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA systems', 2020.0, 1930692642.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 2117.43, 20200324.0, 'NAA8', 1930692642.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104285, 'BUY- us', 2020.0, 2960631296.0, '2020-05-04', 20200504, 20200504, '2020-05-23', 'CAD', 'RV', 1.0, 7094.52, 20200513.0, 'CA10', 2960631296.0, 1, '2020-06-02', '0-15 days' ); /* INSERT QUERY NO: 3617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930637054.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 3387.21, 20200311.0, 'NAA8', 1930637054.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930709078.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 26120.44, 20200328.0, 'NAH4', 1930709078.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE trust', 2020.0, 1930759814.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 53888.98, 20200407.0, 'NAA8', 1930759814.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S systems', 2020.0, 1930655468.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 301.25, 20200317.0, 'NAA8', 1930655468.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930676019.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 3863.87, 20200320.0, 'NAU5', 1930676019.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA associates', 2020.0, 1930738185.0, '2020-04-03', 20200403, 20200403, '2020-04-08', 'USD', 'RV', 1.0, 27427.73, 20200401.0, 'NAM1', 1930738185.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930800084.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 1053.49, 20200418.0, 'NAU5', 1930800084.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 3624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA ', 2020.0, 1930673582.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 36422.98, 20200319.0, 'NAA8', 1930673582.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100001222, 'REST llc', 2020.0, 1930688740.0, '2020-03-23', 20200323, 20200323, '2020-04-12', 'USD', 'RV', 1.0, 1499.8, 20200323.0, 'NAD1', 1930688740.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960627883.0, '2020-04-13', 20200413, 20200413, '2020-04-25', 'CAD', 'RV', 1.0, 48529.2, 20200415.0, 'CA10', 2960627883.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 3627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930685321.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 40087.41, 20200321.0, 'NAH4', 1930685321.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER us', 2020.0, 1930718471.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 16805.38, 20200329.0, 'NAA8', 1930718471.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200457993, 'SHAM us', 2020.0, 1930605473.0, '2020-03-05', 20200305, 20200305, '2020-03-25', 'USD', 'RV', 1.0, 15372.53, 20200305.0, 'NAD1', 1930605473.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930732848.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 114532.29, 20200402.0, 'NAC6', 1930732848.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930877803.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 21964.53, 20200508.0, 'NAH4', 1930877803.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 3632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930606124.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 32715.47, 20200305.0, 'NAAX', 1930606124.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 3633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F in', 2020.0, 1930570370.0, '2020-02-28', 20200226, 20200228, '2020-02-28', 'USD', 'RV', 1.0, 37209.64, 20200228.0, 'NAX2', 1930570370.0, 1, '2020-03-03', '0-15 days' ); /* INSERT QUERY NO: 3634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104277, 'WALLA associates', 2020.0, 2960630663.0, '2020-04-27', 20200427, 20200427, '2020-05-15', 'CAD', 'RV', 1.0, 15360.05, 20200505.0, 'CA10', 2960630663.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 3635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W us', 2020.0, 1930618770.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 65597.84, 20200308.0, 'NAC6', 1930618770.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930670456.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 54956.24, 20200318.0, 'NAC6', 1930670456.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930813653.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 50754.71, 20200424.0, 'NAH4', 1930813653.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930752533.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 1414.68, 20200405.0, 'NAH4', 1930752533.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG corporation', 2020.0, 1930882930.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 21079.21, 20200509.0, 'NAA8', 1930882930.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 3640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL foundation', 2020.0, 1930566930.0, '2020-02-28', 20200225, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 34820.92, 20200228.0, 'NAA8', 1930566930.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 3641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS corporation', 2020.0, 1930783640.0, '2020-04-14', 20200414, 20200414, '2020-06-18', 'USD', 'RV', 1.0, 5490.51, 20200414.0, 'NAGD', 1930783640.0, 1, '2020-06-15', 'early' ); /* INSERT QUERY NO: 3642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930580587.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 15306.59, 20200228.0, 'NAH4', 1930580587.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 3643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930713853.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 12754.3, 20200328.0, 'NAH4', 1930713853.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960629474.0, '2020-04-26', 20200426, 20200426, '2020-05-07', 'CAD', 'RV', 1.0, 144785.38, 20200427.0, 'CA10', 2960629474.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 3645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930744079.0, '2020-04-07', 20200403, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 8793.09, 20200407.0, 'NAAX', 1930744079.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE llc', 2020.0, 1930732436.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 56951.17, 20200401.0, 'NAA8', 1930732436.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930827276.0, '2020-04-27', 20200426, 20200427, '2020-05-31', 'USD', 'RV', 1.0, 2219.59, 20200427.0, 'NAAW', 1930827276.0, 1, '2020-05-25', 'early' ); /* INSERT QUERY NO: 3648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200457993, 'SHAM llc', 2020.0, 1930843263.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 21680.74, 20200501.0, 'NAA8', 1930843263.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 3649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930809602.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 37114.99, 20200421.0, 'NAH4', 1930809602.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930707279.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 16070.82, 20200328.0, 'NAC6', 1930707279.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930769668.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 8793.09, 20200410.0, 'NAAX', 1930769668.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930837954.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2535.24, 20200430.0, 'NAH4', 1930837954.0, 1, '2020-05-16', '0-15 days' ); /* INSERT QUERY NO: 3653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE associates', 2020.0, 1930809322.0, '2020-04-29', 20200421, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 21121.2, 20200429.0, 'NAA8', 1930809322.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & ', 2020.0, 1930831444.0, '2020-04-27', 20200428, 20200427, '2020-07-01', 'USD', 'RV', 1.0, 52781.03, 20200427.0, 'NAGD', 1930831444.0, 1, '2020-06-27', 'early' ); /* INSERT QUERY NO: 3655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M corporation', 2020.0, 1930585417.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 16627.61, 20200301.0, 'NAA8', 1930585417.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 3656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD co', 2020.0, 1930727226.0, '2020-04-01', 20200401, 20200401, '2020-04-21', 'USD', 'RV', 1.0, 2915.59, 20200401.0, 'NAD1', 1930727226.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783189, 'PERFOR in', 2020.0, 1930630603.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 68832.91, 20200310.0, 'NAA8', 1930630603.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D systems', 2020.0, 1930624422.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 18591.15, 20200309.0, 'NAA8', 1930624422.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S trust', 2020.0, 1930652542.0, '2020-03-15', 20200314, 20200315, '2020-05-19', 'USD', 'RV', 1.0, 2200.74, 20200315.0, 'NAGD', 1930652542.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 3660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE in', 2020.0, 1930777404.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 27636.31, 20200411.0, 'NAA8', 1930777404.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ associates', 2020.0, 1930725811.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 43830.83, 20200331.0, 'NAA8', 1930725811.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200076137, 'OLLIE corporation', 2020.0, 1930839310.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 11251.2, 20200504.0, 'NAA8', 1930839310.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 3663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930879517.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 5026.38, 20200508.0, 'NAA8', 1930879517.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 3664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA ', 2020.0, 1930631076.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 2802.41, 20200311.0, 'NAA8', 1930631076.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- us', 2020.0, 2960618413.0, '2020-03-03', 20200304, 20200303, '2020-03-17', 'CAD', 'RV', 1.0, 3904.01, 20200307.0, 'CA10', 2960618413.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 3666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU ', 2020.0, 1930769234.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 52036.22, 20200411.0, 'NAA8', 1930769234.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR foundation', 2020.0, 1930597593.0, '2020-03-05', 20200304, 20200305, '2020-05-09', 'USD', 'RV', 1.0, 10554.37, 20200305.0, 'NAGD', 1930597593.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE co', 2020.0, 1930759603.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 2102.82, 20200407.0, 'NAA8', 1930759603.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930609471.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 1299.25, 20200306.0, 'NAH4', 1930609471.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930773967.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 34320.28, 20200412.0, 'NAH4', 1930773967.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930776899.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 58130.13, 20200413.0, 'NAAX', 1930776899.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930879710.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 21134.97, 20200508.0, 'NAH4', 1930879710.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 3673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930582566.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 15681.17, 20200302.0, 'NAH4', 1930582566.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 3674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930629682.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 599.6, 20200311.0, 'NAH4', 1930629682.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930857107.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 17909.59, 20200505.0, 'NAH4', 1930857107.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930580917.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 321.21, 20200228.0, 'NAA8', 1930580917.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930699653.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 13945.65, 20200325.0, 'NAH4', 1930699653.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR corporation', 2020.0, 1930838206.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 19143.83, 20200429.0, 'NAA8', 1930838206.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 3679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA corporation', 2020.0, 1930664330.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 12860.34, 20200318.0, 'NAA8', 1930664330.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930801322.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 18032.74, 20200419.0, 'NAH4', 1930801322.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS corporation', 2020.0, 1930638104.0, '2020-03-12', 20200311, 20200312, '2020-04-16', 'USD', 'RV', 1.0, 21115.87, 20200312.0, 'NAG2', 1930638104.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930851585.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 7982.49, 20200504.0, 'NAH4', 1930851585.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 3683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA trust', 2020.0, 1930857525.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 2832.86, 20200504.0, 'NAA8', 1930857525.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 3684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930743629.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 135319.2, 20200403.0, 'NAC6', 1930743629.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930831177.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 5601.67, 20200428.0, 'NAH4', 1930831177.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 3686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU foundation', 2020.0, 1930636772.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 120103.78, 20200312.0, 'NAA8', 1930636772.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930843002.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 41765.93, 20200501.0, 'NAH4', 1930843002.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200407025, 'ALBERT associates', 2020.0, 1930642234.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 122619.03, 20200314.0, 'NAA8', 1930642234.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930732946.0, '2020-04-05', 20200402, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 80029.11, 20200405.0, 'NAH4', 1930732946.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA corp', 2020.0, 1930768567.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 35214.88, 20200408.0, 'NAA8', 1930768567.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS corp', 2020.0, 1930670516.0, '2020-03-20', 20200318, 20200320, '2020-04-24', 'USD', 'RV', 1.0, 43957.72, 20200320.0, 'NAG2', 1930670516.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC in', 2020.0, 1930660582.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 3279.64, 20200318.0, 'NAA8', 1930660582.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930784394.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 53950.01, 20200415.0, 'NAH4', 1930784394.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 3694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930818543.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 3408.66, 20200424.0, 'NAA8', 1930818543.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930671150.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 34067.19, 20200320.0, 'NAH4', 1930671150.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU llc', 2020.0, 1930623053.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 77135.88, 20200309.0, 'NAC6', 1930623053.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104392, 'FLANAG trust', 2020.0, 2960617808.0, '2020-02-29', 20200229, 20200229, '2020-03-14', 'CAD', 'RV', 1.0, 680.11, 20200304.0, 'CA10', 2960617808.0, 1, '2020-03-15', '0-15 days' ); /* INSERT QUERY NO: 3698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU corporation', 2020.0, 1930732169.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 117497.86, 20200401.0, 'NAA8', 1930732169.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930691598.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 471.56, 20200324.0, 'NAH4', 1930691598.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE us', 2020.0, 1930814485.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 25028.79, 20200422.0, 'NAA8', 1930814485.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930891750.0, '2020-05-12', 20200512, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 33016.02, 20200512.0, 'NAH4', 1930891750.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 3702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930819357.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 1221.52, 20200416.0, 'NAM4', 1930819357.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER co', 2020.0, 1930818192.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 72719.09, 20200423.0, 'NAA8', 1930818192.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930609500.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 29939.33, 20200307.0, 'NAH4', 1930609500.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930791329.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 31269.59, 20200417.0, 'NAH4', 1930791329.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 3706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100044010, 'LAND systems', 2020.0, 1930725979.0, '2020-04-01', 20200331, 20200401, '2020-05-03', 'USD', 'RV', 1.0, 46490.22, 20200401.0, 'NA32', 1930725979.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 3707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930616925.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 2097.2, 20200307.0, 'NAH4', 1930616925.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO associates', 2020.0, 2960623121.0, '2020-03-20', 20200320, 20200320, '2020-04-02', 'CAD', 'RV', 1.0, 59306.19, 20200323.0, 'CA10', 2960623121.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 3709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930592455.0, '2020-03-06', 20200302, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 21723.3, 20200306.0, 'NAC6', 1930592455.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corporation', 2020.0, 1930857400.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 45045.77, 20200505.0, 'NAA8', 1930857400.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA trust', 2020.0, 1930746172.0, '2020-04-04', 20200404, 20200404, '2020-04-08', 'USD', 'RV', 1.0, 16023.9, 20200401.0, 'NAM1', 1930746172.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corporation', 2020.0, 2960630659.0, '2020-04-27', 20200427, 20200427, '2020-05-08', 'CAD', 'RV', 1.0, 99537.06, 20200428.0, 'CA10', 2960630659.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 3713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA corp', 2020.0, 1930592854.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 16817.42, 20200303.0, 'NAA8', 1930592854.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'H.J. HEI corporation', 2020.0, 1991839897.0, '2020-03-05', 20200305, 20200305, '2020-04-19', 'USD', 'RV', 1.0, 19800.74, 20200305.0, 'NAVF', 1991839897.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 3715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE llc', 2020.0, 1930638547.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 60123.12, 20200312.0, 'NAA8', 1930638547.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930827976.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 99.19, 20200426.0, 'NAA8', 1930827976.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930829710.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 27.6, 20200426.0, 'NAA8', 1930829710.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930797236.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 10710.27, 20200417.0, 'NAH4', 1930797236.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 3719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA associates', 2020.0, 1930605997.0, '2020-03-05', 20200305, 20200305, '2020-03-11', 'USD', 'RV', 1.0, 10761.73, 20200301.0, 'NAM2', 1930605997.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106271, 'LONGO corp', 2020.0, 2960629950.0, '2020-04-21', 20200421, 20200421, '2020-05-02', 'CAD', 'RV', 1.0, 8718.81, 20200422.0, 'CA10', 2960629950.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 3721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY foundation', 2020.0, 1930785736.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 76859.5, 20200414.0, 'NAC6', 1930785736.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 3722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930612218.0, '2020-03-12', 20200306, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 19664.69, 20200312.0, 'NAA8', 1930612218.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO us', 2020.0, 2960616995.0, '2020-03-02', 20200302, 20200302, '2020-03-14', 'CAD', 'RV', 1.0, 71646.14, 20200304.0, 'CA10', 2960616995.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 3724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930707383.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 25793.89, 20200326.0, 'NAH4', 1930707383.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 3725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930645440.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 19750.27, 20200313.0, 'NAA8', 1930645440.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA corporation', 2020.0, 1930603884.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 37543.05, 20200305.0, 'NAA8', 1930603884.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 3727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752607, 'IRA HI ', 2020.0, 1930767763.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 17263.1, 20200409.0, 'NAA8', 1930767763.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC ', 2020.0, 1930820211.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 1977.62, 20200416.0, 'NAM4', 1930820211.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD foundation', 2020.0, 1930593464.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 10951.74, 20200303.0, 'NAA8', 1930593464.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930829216.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 27439.36, 20200428.0, 'NAC6', 1930829216.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 3731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - us', 2020.0, 1930584571.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 16239.03, 20200229.0, 'NAA8', 1930584571.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 3732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770567, 'LABAT foundation', 2020.0, 1930768487.0, '2020-04-13', 20200409, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 67072.6, 20200413.0, 'NAA8', 1930768487.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA trust', 2020.0, 1930809684.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 22135.96, 20200424.0, 'NAA8', 1930809684.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930794590.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 71.46, 20200417.0, 'NAA8', 1930794590.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 3735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930694000.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 3403.8, 20200325.0, 'NAH4', 1930694000.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB foundation', 2020.0, 2960618571.0, '2020-03-05', 20200305, 20200305, '2020-03-23', 'CAD', 'RV', 1.0, 3546.95, 20200313.0, 'CA10', 2960618571.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 3737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930862345.0, '2020-05-05', 20200506, 20200505, '2020-05-25', 'USD', 'RV', 1.0, 70657.38, 20200505.0, 'NAD1', 1930862345.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 3738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO us', 2020.0, 2960625814.0, '2020-03-31', 20200331, 20200331, '2020-04-12', 'CAD', 'RV', 1.0, 24290.69, 20200402.0, 'CA10', 2960625814.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 3739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA foundation', 2020.0, 1930684785.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 69089.05, 20200322.0, 'NAA8', 1930684785.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930863607.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 82449.95, 20200506.0, 'NAA8', 1930863607.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 3741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930758047.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 33223.94, 20200407.0, 'NAH4', 1930758047.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930690786.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 8464.3, 20200325.0, 'NAH4', 1930690786.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE trust', 2020.0, 1930817102.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 36240.88, 20200422.0, 'NAA8', 1930817102.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930675671.0, '2020-03-23', 20200320, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 14973.78, 20200323.0, 'NAH4', 1930675671.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER ', 2020.0, 2960618628.0, '2020-03-07', 20200307, 20200307, '2020-03-25', 'CAD', 'RV', 1.0, 124039.8, 20200315.0, 'CA10', 2960618628.0, 1, '2020-03-30', '0-15 days' ); /* INSERT QUERY NO: 3746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER ', 2020.0, 1930746933.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 20904.74, 20200403.0, 'NAA8', 1930746933.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100015557, 'BI ', 2020.0, 1930759921.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 7504.88, 20200407.0, 'NAA8', 1930759921.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930684838.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 73197.92, 20200323.0, 'NAC6', 1930684838.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930681108.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 39658.87, 20200321.0, 'NAH4', 1930681108.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930632970.0, '2020-03-12', 20200310, 20200312, '2020-03-12', 'USD', 'RV', 1.0, 14577.36, 20200312.0, 'NAX2', 1930632970.0, 1, '2020-03-18', '0-15 days' ); /* INSERT QUERY NO: 3751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930817050.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 61788.27, 20200423.0, 'NAC6', 1930817050.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE us', 2020.0, 1930830499.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 55894.91, 20200427.0, 'NAA8', 1930830499.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 3753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200501669, 'WAL MA in', 2020.0, 1990571122.0, '2020-03-05', 20200304, 20200305, '2020-04-09', 'USD', 'RV', 1.0, 16967.29, 20200305.0, 'NAG2', 1990571122.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 3754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930676240.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 4902.8, 20200316.0, 'NAM4', 1930676240.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930750045.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 36425.94, 20200405.0, 'NAH4', 1930750045.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA llc', 2020.0, 1930856445.0, '2020-05-04', 20200504, 20200504, '2020-05-24', 'USD', 'RV', 1.0, 139.32, 20200501.0, 'NAM4', 1930856445.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 3757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729828, 'KENNETH us', 2020.0, 1930628646.0, '2020-03-13', 20200310, 20200313, '2020-04-02', 'USD', 'RV', 1.0, 23865.31, 20200313.0, 'NAD1', 1930628646.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043961, 'GOUR systems', 2020.0, 1930667220.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 17177.4, 20200318.0, 'NAA8', 1930667220.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 3759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930726737.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 52171.37, 20200402.0, 'NAH4', 1930726737.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 3760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930654825.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 1329.23, 20200317.0, 'NAH4', 1930654825.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930573891.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 74715.59, 20200228.0, 'NAA8', 1930573891.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 3762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR in', 2020.0, 2960619736.0, '2020-03-11', 20200311, 20200311, '2020-03-22', 'CAD', 'RV', 1.0, 9338.15, 20200312.0, 'CA10', 2960619736.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 3763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930832327.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 15310.48, 20200429.0, 'NAH4', 1930832327.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY ', 2020.0, 1930769614.0, '2020-04-13', 20200409, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 47489.64, 20200413.0, 'NAA8', 1930769614.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722369, 'PERFOR corp', 2020.0, 1930661299.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 19195.26, 20200331.0, 'NAA8', 1930661299.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F associates', 2020.0, 1930570594.0, '2020-03-01', 20200302, 20200301, '2020-03-01', 'USD', 'RV', 1.0, 407.36, 20200301.0, 'NAX2', 1930570594.0, 1, '2020-03-07', '0-15 days' ); /* INSERT QUERY NO: 3767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR llc', 2020.0, 1930592207.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 14559.54, 20200302.0, 'NAA8', 1930592207.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 3768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR llc', 2020.0, 1930857266.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 88280.18, 20200505.0, 'NAA8', 1930857266.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 3769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930846864.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 14530.75, 20200504.0, 'NAH4', 1930846864.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 3770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930675015.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 261.45, 20200319.0, 'NAA8', 1930675015.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS in', 2020.0, 1930580982.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 160351.49, 20200229.0, 'NAA8', 1930580982.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 3772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE trust', 2020.0, 1930829417.0, '2020-04-30', 20200427, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2478.6, 20200430.0, 'NAA8', 1930829417.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB corp', 2020.0, 2960624318.0, '2020-03-25', 20200325, 20200325, '2020-04-12', 'CAD', 'RV', 1.0, 22302.77, 20200402.0, 'CA10', 2960624318.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 3774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER co', 2020.0, 1930681399.0, '2020-03-21', 20200322, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 65337.63, 20200321.0, 'NAA8', 1930681399.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 3775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE us', 2020.0, 1930838905.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 44930.59, 20200430.0, 'NAA8', 1930838905.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 3776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930779338.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 40193.83, 20200412.0, 'NAH4', 1930779338.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930684671.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 8532.56, 20200323.0, 'NAA8', 1930684671.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930803202.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 8942.82, 20200420.0, 'NAH4', 1930803202.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 3779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930872279.0, '2020-05-09', 20200507, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 70149.82, 20200509.0, 'NAH4', 1930872279.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 3780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M foundation', 2020.0, 2960629876.0, '2020-04-21', 20200421, 20200421, '2020-05-02', 'CAD', 'RV', 1.0, 28881.06, 20200422.0, 'CA10', 2960629876.0, 1, '2020-05-11', '0-15 days' ); /* INSERT QUERY NO: 3781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930686065.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 38240.43, 20200322.0, 'NAU5', 1930686065.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930687803.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 22587.08, 20200322.0, 'NAH4', 1930687803.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO us', 2020.0, 1930654140.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 2382.71, 20200316.0, 'NAA8', 1930654140.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200704045, 'RA trust', 2020.0, 1930865685.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 104546.91, 20200506.0, 'NAA8', 1930865685.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 3785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F us', 2020.0, 1930635116.0, '2020-03-14', 20200310, 20200314, '2020-03-14', 'USD', 'RV', 1.0, 668.2, 20200314.0, 'NAX2', 1930635116.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 3786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930839138.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 2896.82, 20200429.0, 'NAA8', 1930839138.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA co', 2020.0, 1930782048.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 71330.79, 20200414.0, 'NAA8', 1930782048.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 3788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930693411.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 37128.86, 20200324.0, 'NAH4', 1930693411.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST associates', 2020.0, 1930871906.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 10039.1, 20200507.0, 'NAAX', 1930871906.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 3790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT corp', 2020.0, 1930662188.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 38960.5, 20200319.0, 'NAA8', 1930662188.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105508, 'DOLLARA corp', 2020.0, 2960617956.0, '2020-03-02', 20200302, 20200302, '2020-03-15', 'CAD', 'RV', 1.0, 12112.97, 20200305.0, 'CA10', 2960617956.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 3792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL trust', 2020.0, 1930740041.0, '2020-04-10', 20200403, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 1210.52, 20200410.0, 'NAA8', 1930740041.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930810130.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 173.56, 20200422.0, 'NAA8', 1930810130.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930817832.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 11355.26, 20200416.0, 'NAM1', 1930817832.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930782886.0, '2020-04-18', 20200414, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 4072.11, 20200418.0, 'NAAX', 1930782886.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 3796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930858991.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 75806.85, 20200504.0, 'NAC6', 1930858991.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930752507.0, '2020-04-03', 20200406, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 591.34, 20200403.0, 'NAA8', 1930752507.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960619503.0, '2020-03-07', 20200307, 20200307, '2020-03-21', 'CAD', 'RV', 1.0, 126394.24, 20200311.0, 'CA10', 2960619503.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 3799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930585453.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 46051.88, 20200302.0, 'NAH4', 1930585453.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 3800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930845307.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 35523.16, 20200501.0, 'NAH4', 1930845307.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930611905.0, '2020-03-07', 20200306, 20200307, '2020-04-08', 'USD', 'RV', 1.0, 71587.01, 20200307.0, 'NA32', 1930611905.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930829530.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 99.19, 20200426.0, 'NAA8', 1930829530.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930879169.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 9085.15, 20200509.0, 'NAH4', 1930879169.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 3804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930778040.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 3983.68, 20200412.0, 'NAH4', 1930778040.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100050402, 'FAVAZZ ', 2020.0, 1930645319.0, '2020-03-13', 20200312, 20200313, '2020-03-23', 'USD', 'RV', 1.0, 25585.2, 20200313.0, 'NA10', 1930645319.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930770876.0, '2020-04-14', 20200409, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 7336.86, 20200414.0, 'NAA8', 1930770876.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 3807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930643537.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 28327.67, 20200314.0, 'NAA8', 1930643537.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930598701.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 21909.76, 20200304.0, 'NAH4', 1930598701.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 3809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930599069.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 23068.89, 20200306.0, 'NAAX', 1930599069.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930793063.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 132.72, 20200416.0, 'NAA8', 1930793063.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930571282.0, '2020-02-27', 20200226, 20200227, '2020-05-02', 'USD', 'RV', 1.0, 8510.4, 20200227.0, 'NAGD', 1930571282.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 3812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200858049, 'GEOR in', 2020.0, 1930825541.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 9151.36, 20200424.0, 'NAA8', 1930825541.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930751908.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 446.22, 20200406.0, 'NAH4', 1930751908.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930834253.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 4696.59, 20200429.0, 'NAH4', 1930834253.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930621902.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 95285.65, 20200307.0, 'NAA8', 1930621902.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 3816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL foundation', 2020.0, 1930593671.0, '2020-03-06', 20200303, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 17606.06, 20200306.0, 'NAA8', 1930593671.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930743526.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 1296.18, 20200404.0, 'NAC6', 1930743526.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930623607.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 813.17, 20200309.0, 'NAH4', 1930623607.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930716536.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 40323.79, 20200328.0, 'NAH4', 1930716536.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930683408.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 42343.39, 20200322.0, 'NAH4', 1930683408.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F ', 2020.0, 2960616761.0, '2020-03-02', 20200302, 20200302, '2020-03-14', 'CAD', 'RV', 1.0, 11654.05, 20200304.0, 'CA10', 2960616761.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 3822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930845866.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 14261.03, 20200503.0, 'NAH4', 1930845866.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 3823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930804133.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 23142.6, 20200421.0, 'NAA8', 1930804133.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 3824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930599009.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 388.29, 20200305.0, 'NAH4', 1930599009.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930571518.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 18150.73, 20200227.0, 'NAH4', 1930571518.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 3826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100008001, 'ANHA in', 2020.0, 1930639612.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 52005.66, 20200313.0, 'NAA8', 1930639612.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA corp', 2020.0, 1930694036.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 25815.28, 20200326.0, 'NAA8', 1930694036.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930670644.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 43745.8, 20200319.0, 'NAH4', 1930670644.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY in', 2020.0, 1930651996.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 13781.21, 20200316.0, 'NAC6', 1930651996.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960622616.0, '2020-03-19', 20200319, 20200319, '2020-03-29', 'CAD', 'RV', 1.0, 85322.16, 20200319.0, 'CA10', 2960622616.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 3831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783734, 'FAREW systems', 2020.0, 1930724559.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 35588.65, 20200331.0, 'NAA8', 1930724559.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F associates', 2020.0, 1930681211.0, '2020-03-24', 20200320, 20200324, '2020-03-24', 'USD', 'RV', 1.0, 2843.7, 20200324.0, 'NAX2', 1930681211.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 3833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930721705.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 56722.68, 20200401.0, 'NAH4', 1930721705.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200396637, 'LAWL corp', 2020.0, 1930759679.0, '2020-03-30', 20200407, 20200330, '2020-04-29', 'USD', 'RV', 1.0, 48466.44, 20200330.0, 'NAD5', 1930759679.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ us', 2020.0, 1930674349.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 170678.96, 20200320.0, 'NAA8', 1930674349.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930819451.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 19974.19, 20200424.0, 'NAH4', 1930819451.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corporation', 2020.0, 1930595748.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 5841.72, 20200304.0, 'NAA8', 1930595748.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930716029.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 1506.32, 20200328.0, 'NAH4', 1930716029.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 3839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO foundation', 2020.0, 2960623179.0, '2020-03-23', 20200323, 20200323, '2020-04-03', 'CAD', 'RV', 1.0, 139891.22, 20200324.0, 'CA10', 2960623179.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 3840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930594522.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 1414.68, 20200303.0, 'NAH4', 1930594522.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930594250.0, '2020-03-07', 20200303, 20200307, '2020-03-07', 'USD', 'RV', 1.0, 3333.0, 20200307.0, 'NAX2', 1930594250.0, 1, '2020-03-13', '0-15 days' ); /* INSERT QUERY NO: 3842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930793136.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 199.08, 20200416.0, 'NAA8', 1930793136.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL co', 2020.0, 1930580336.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 68231.04, 20200227.0, 'NAA8', 1930580336.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930583597.0, '2020-02-28', 20200229, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 4386.71, 20200228.0, 'NAU5', 1930583597.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930827609.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 183381.6, 20200425.0, 'NAA8', 1930827609.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930765381.0, '2020-04-10', 20200410, 20200410, '2020-04-11', 'USD', 'RV', 1.0, 13587.61, 20200401.0, 'NAM2', 1930765381.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200774000, 'RALEY corporation', 2020.0, 1930660494.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 88201.16, 20200317.0, 'NAA8', 1930660494.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER corp', 2020.0, 1930589585.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 3024.77, 20200303.0, 'NAA8', 1930589585.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930631011.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 2888.17, 20200311.0, 'NAH4', 1930631011.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930725547.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 53914.49, 20200402.0, 'NAA8', 1930725547.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 3851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO trust', 2020.0, 2960620089.0, '2020-03-17', 20200317, 20200317, '2020-03-29', 'CAD', 'RV', 1.0, 139344.45, 20200319.0, 'CA10', 2960620089.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 3852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930785184.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 2146.79, 20200415.0, 'NAA8', 1930785184.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 3853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930833862.0, '2020-04-28', 20200428, 20200428, '2020-06-01', 'USD', 'RV', 1.0, 666.41, 20200428.0, 'NAAW', 1930833862.0, 1, '2020-05-26', 'early' ); /* INSERT QUERY NO: 3854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930684489.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 24364.44, 20200323.0, 'NAH4', 1930684489.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930750503.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 60646.6, 20200405.0, 'NAH4', 1930750503.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930653280.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 49735.98, 20200317.0, 'NAH4', 1930653280.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036292, 'AMY us', 2020.0, 1930701254.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 17882.92, 20200325.0, 'NAA8', 1930701254.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC foundation', 2020.0, 1930753748.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'USD', 'RV', 1.0, 349.44, 20200401.0, 'NAM4', 1930753748.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930584083.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 15428.59, 20200301.0, 'NAH4', 1930584083.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930820092.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 106.2, 20200416.0, 'NAM4', 1930820092.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930719184.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 27741.89, 20200330.0, 'NAA8', 1930719184.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930783847.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 35857.99, 20200416.0, 'NAA8', 1930783847.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA us', 2020.0, 1930692641.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 11296.32, 20200324.0, 'NAA8', 1930692641.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930689719.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 34735.6, 20200325.0, 'NAH4', 1930689719.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 3865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930759996.0, '2020-04-08', 20200408, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 5140.8, 20200408.0, 'NAGD', 1930759996.0, 1, '2020-06-08', 'early' ); /* INSERT QUERY NO: 3866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930845561.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 1543.18, 20200501.0, 'NAH4', 1930845561.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 3867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799420, 'HT HA ', 2020.0, 1930814024.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 522.7, 20200422.0, 'NAA8', 1930814024.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930651400.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 12892.86, 20200314.0, 'NAA8', 1930651400.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930710441.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 11744.86, 20200326.0, 'NAA8', 1930710441.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930799610.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 20136.07, 20200418.0, 'NAH4', 1930799610.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG in', 2020.0, 1930658262.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 72277.32, 20200316.0, 'NAA8', 1930658262.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 3872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780849, 'LAUREL associates', 2020.0, 1930664091.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 25161.97, 20200317.0, 'NAA8', 1930664091.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO co', 2020.0, 2960619325.0, '2020-03-09', 20200309, 20200309, '2020-03-20', 'CAD', 'RV', 1.0, 34359.09, 20200310.0, 'CA10', 2960619325.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 3874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930585867.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 3228.13, 20200302.0, 'NAH4', 1930585867.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 3875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT co', 2020.0, 1930740107.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 135976.56, 20200404.0, 'NAA8', 1930740107.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930626274.0, '2020-03-12', 20200309, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 29003.86, 20200312.0, 'NAH4', 1930626274.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 3877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930752919.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 3335.25, 20200406.0, 'NAA8', 1930752919.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930655244.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 36935.4, 20200317.0, 'NAH4', 1930655244.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU us', 2020.0, 1930732727.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 51773.42, 20200402.0, 'NAC6', 1930732727.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930858022.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 851.72, 20200501.0, 'NAM4', 1930858022.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 3881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930585779.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 57681.13, 20200303.0, 'NAH4', 1930585779.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100029649, 'LES ENTRE corporation', 2020.0, 2960618941.0, '2020-03-07', 20200307, 20200307, '2020-03-19', 'CAD', 'RV', 1.0, 28977.0, 20200309.0, 'CA10', 2960618941.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 3883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR llc', 2020.0, 1930875604.0, '2020-05-09', 20200507, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 99091.05, 20200509.0, 'NAA8', 1930875604.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT co', 2020.0, 1930630037.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 102294.76, 20200310.0, 'NAA8', 1930630037.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT llc', 2020.0, 1930830965.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 53814.2, 20200428.0, 'NAA8', 1930830965.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 100031628, 'COLDST us', 2020.0, 2960624796.0, '2020-04-02', 20200402, 20200402, '2020-04-21', 'CAD', 'RV', 1.0, 83079.32, 20200411.0, 'CA10', 2960624796.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 3887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA systems', 2020.0, 1930761795.0, '2020-04-08', 20200408, 20200408, '2020-04-24', 'USD', 'RV', 1.0, 1303.71, 20200401.0, 'NAM4', 1930761795.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930654532.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 47482.57, 20200317.0, 'NAH4', 1930654532.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S co', 2020.0, 1930715320.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 13930.02, 20200329.0, 'NAA8', 1930715320.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930779412.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 8740.12, 20200412.0, 'NAH4', 1930779412.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930752640.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 14504.44, 20200406.0, 'NAH4', 1930752640.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU corporation', 2020.0, 1930705156.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 53516.29, 20200327.0, 'NAA8', 1930705156.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930848270.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 8180.43, 20200502.0, 'NAH4', 1930848270.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 3894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH in', 2020.0, 1930718422.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 19198.93, 20200330.0, 'NAA8', 1930718422.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930739732.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 85686.11, 20200405.0, 'NAC6', 1930739732.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 3896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corp', 2020.0, 2960625693.0, '2020-04-03', 20200403, 20200403, '2020-04-15', 'CAD', 'RV', 1.0, 66246.67, 20200405.0, 'CA10', 2960625693.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 3897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930660295.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 34885.69, 20200316.0, 'NAC6', 1930660295.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930606077.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 899.2, 20200305.0, 'NAH4', 1930606077.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M co', 2020.0, 1930813071.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 116714.7, 20200421.0, 'NAA8', 1930813071.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 3900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR foundation', 2020.0, 1930592209.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 33528.75, 20200303.0, 'NAA8', 1930592209.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100033439, 'WESTI ', 2020.0, 1930626098.0, '2020-03-11', 20200309, 20200311, '2020-03-21', 'USD', 'RV', 1.0, 39712.0, 20200311.0, 'NA10', 1930626098.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 3902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S foundation', 2020.0, 1930818538.0, '2020-04-28', 20200423, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 11175.09, 20200428.0, 'NAA8', 1930818538.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 3903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200789077, 'US foundation', 2020.0, 1930721330.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 27363.66, 20200330.0, 'NAA8', 1930721330.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 3904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE foundation', 2020.0, 1930616776.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 97499.37, 20200306.0, 'NAA8', 1930616776.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 3905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930691591.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1506.84, 20200324.0, 'NAA8', 1930691591.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200071186, 'FATH corporation', 2020.0, 1930661613.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 52588.8, 20200316.0, 'NAA8', 1930661613.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930861918.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 10476.39, 20200505.0, 'NAA8', 1930861918.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU systems', 2020.0, 1930806366.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 56464.11, 20200422.0, 'NAA8', 1930806366.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 3909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930808735.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 15187.34, 20200422.0, 'NAH4', 1930808735.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200387798, 'AR us', 2020.0, 1930740748.0, '2020-04-07', 20200403, 20200407, '2020-05-22', 'USD', 'RV', 1.0, 2962.08, 20200407.0, 'NABG', 1930740748.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930737077.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 25555.22, 20200404.0, 'NAH4', 1930737077.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 3912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ us', 2020.0, 1930835845.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 45152.78, 20200428.0, 'NAA8', 1930835845.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930624022.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 40913.31, 20200311.0, 'NAH4', 1930624022.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 3914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930653686.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 3193.83, 20200316.0, 'NAA8', 1930653686.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH associates', 2020.0, 1930573569.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 52315.56, 20200228.0, 'NAA8', 1930573569.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 3916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH us', 2020.0, 1930683711.0, '2020-03-20', 20200321, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 20639.14, 20200320.0, 'NAGD', 1930683711.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 3917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200359490, 'DUTCH in', 2020.0, 1930859190.0, '2020-05-08', 20200505, 20200508, '2020-05-18', 'USD', 'RV', 1.0, 14438.4, 20200508.0, 'NA10', 1930859190.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 3918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER in', 2020.0, 2960628029.0, '2020-04-11', 20200411, 20200411, '2020-04-28', 'CAD', 'RV', 1.0, 131400.69, 20200418.0, 'CA10', 2960628029.0, 1, '2020-05-02', '0-15 days' ); /* INSERT QUERY NO: 3919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200748108, 'KROGER foundation', 2020.0, 1930860769.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 97996.24, 20200505.0, 'NAA8', 1930860769.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 3920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER corp', 2020.0, 1930647260.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 114514.15, 20200313.0, 'NAA8', 1930647260.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 3921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA in', 2020.0, 1930682817.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 17262.43, 20200321.0, 'NAA8', 1930682817.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 3922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100047471, 'ALL us', 2020.0, 1930756708.0, '2020-04-06', 20200406, 20200406, '2020-04-16', 'USD', 'RV', 1.0, 9943.0, 20200406.0, 'NA10', 1930756708.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 3923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100047471, 'ALL associates', 2020.0, 1930884488.0, '2020-05-11', 20200511, 20200511, '2020-05-21', 'USD', 'RV', 1.0, 9754.2, 20200511.0, 'NA10', 1930884488.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930832170.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 22548.4, 20200428.0, 'NAU5', 1930832170.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930689844.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 35014.46, 20200324.0, 'NAH4', 1930689844.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930583251.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 4110.75, 20200301.0, 'NAA8', 1930583251.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 3927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930759297.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 328.42, 20200408.0, 'NAA8', 1930759297.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT ', 2020.0, 1930842142.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 46087.79, 20200501.0, 'NAA8', 1930842142.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE systems', 2020.0, 1930762350.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 343.8, 20200410.0, 'NAA8', 1930762350.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930745640.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 37191.21, 20200405.0, 'NAH4', 1930745640.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930813933.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 205.68, 20200421.0, 'NAA8', 1930813933.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 3932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930597212.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 6307.23, 20200303.0, 'NAA8', 1930597212.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 3933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO corporation', 2020.0, 2960631283.0, '2020-05-02', 20200502, 20200502, '2020-05-15', 'CAD', 'RV', 1.0, 65879.77, 20200505.0, 'CA10', 2960631283.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 3934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930830881.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 94383.86, 20200427.0, 'NAA8', 1930830881.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 3935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930674745.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 42466.44, 20200316.0, 'NAM2', 1930674745.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930779020.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 74536.48, 20200412.0, 'NAA8', 1930779020.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930862317.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 3006.66, 20200507.0, 'NAH4', 1930862317.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 3938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER corporation', 2020.0, 1930698381.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 119523.44, 20200326.0, 'NAA8', 1930698381.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB us', 2020.0, 2960627584.0, '2020-04-14', 20200414, 20200414, '2020-05-03', 'CAD', 'RV', 1.0, 105116.2, 20200423.0, 'CA10', 2960627584.0, 1, '2020-05-09', '0-15 days' ); /* INSERT QUERY NO: 3940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930752633.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 811.8, 20200405.0, 'NAA8', 1930752633.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 3941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930854941.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 2814.19, 20200504.0, 'NAH4', 1930854941.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 3942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT foundation', 2020.0, 1930692566.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 60268.85, 20200325.0, 'NAA8', 1930692566.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 3943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930586343.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 15471.65, 20200305.0, 'NAH4', 1930586343.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F in', 2020.0, 1930641412.0, '2020-03-14', 20200311, 20200314, '2020-03-14', 'USD', 'RV', 1.0, 89668.71, 20200314.0, 'NAX2', 1930641412.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 3945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930759269.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 12250.94, 20200407.0, 'NAU5', 1930759269.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930731361.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 26007.3, 20200402.0, 'NAU5', 1930731361.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 3947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930753740.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'USD', 'RV', 1.0, 2538.98, 20200401.0, 'NAM4', 1930753740.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 3948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH llc', 2020.0, 1930831551.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 62979.44, 20200428.0, 'NAA8', 1930831551.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200093491, 'WISCO llc', 2020.0, 1930654673.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 103125.0, 20200316.0, 'NAA8', 1930654673.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 3950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930684901.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 661.11, 20200323.0, 'NAH4', 1930684901.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 3951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930789856.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 71155.49, 20200415.0, 'NAA8', 1930789856.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE us', 2020.0, 1930653539.0, '2020-03-17', 20200315, 20200317, '2020-05-21', 'USD', 'RV', 1.0, 13631.69, 20200317.0, 'NAGD', 1930653539.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 3953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200720238, 'WOODM foundation', 2020.0, 1930687321.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 102766.75, 20200323.0, 'NAA8', 1930687321.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930611156.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 47102.22, 20200308.0, 'NAH4', 1930611156.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 3955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727272, 'BROOKS foundation', 2020.0, 1930785503.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 25208.37, 20200416.0, 'NAA8', 1930785503.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 3956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930774207.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 12330.72, 20200411.0, 'NAH4', 1930774207.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 3957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930576887.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 8078.47, 20200228.0, 'NAA8', 1930576887.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 3958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200767520, 'DAWN foundation', 2020.0, 1930580389.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 15154.0, 20200303.0, 'NAA8', 1930580389.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 3959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930719647.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 61392.73, 20200330.0, 'NAA8', 1930719647.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 3960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104552, 'THE NO corp', 2020.0, 2960626408.0, '2020-04-02', 20200403, 20200402, '2020-04-16', 'CAD', 'RV', 1.0, 139641.96, 20200406.0, 'CA10', 2960626408.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 3961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930655820.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 46628.37, 20200316.0, 'NAA8', 1930655820.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 3962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC llc', 2020.0, 2960626042.0, '2020-04-05', 20200405, 20200405, '2020-04-17', 'CAD', 'RV', 1.0, 19160.45, 20200407.0, 'CA10', 2960626042.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 3963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ foundation', 2020.0, 1930646114.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 84214.57, 20200312.0, 'NAA8', 1930646114.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA corporation', 2020.0, 1930837371.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 35000.93, 20200501.0, 'NAH4', 1930837371.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 3965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA ', 2020.0, 1930751137.0, '2020-04-10', 20200405, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 12256.2, 20200410.0, 'NAA8', 1930751137.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930738290.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 47540.39, 20200402.0, 'NAA8', 1930738290.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corporation', 2020.0, 1930769423.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 97605.91, 20200410.0, 'NAA8', 1930769423.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200625175, 'ALD corp', 2020.0, 1930629969.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 26517.37, 20200310.0, 'NAA8', 1930629969.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 3969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104552, 'THE NO co', 2020.0, 2960626502.0, '2020-04-02', 20200402, 20200402, '2020-04-18', 'CAD', 'RV', 1.0, 83417.47, 20200408.0, 'CA10', 2960626502.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 3970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B llc', 2020.0, 1930641774.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 29166.09, 20200312.0, 'NAA8', 1930641774.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930779659.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 8091.47, 20200412.0, 'NAA8', 1930779659.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 3972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930675128.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 9199.01, 20200321.0, 'NAH4', 1930675128.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 3973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930666691.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 43100.01, 20200319.0, 'NAH4', 1930666691.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930841967.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 575.37, 20200429.0, 'NAA8', 1930841967.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 3975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930670753.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 969.66, 20200319.0, 'NAH4', 1930670753.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 3976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR in', 2020.0, 2960628405.0, '2020-04-13', 20200413, 20200413, '2020-04-24', 'CAD', 'RV', 1.0, 6292.06, 20200414.0, 'CA10', 2960628405.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 3977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER corp', 2020.0, 1930687432.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 19046.87, 20200323.0, 'NAA8', 1930687432.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 3978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930693274.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 2373.96, 20200324.0, 'NAH4', 1930693274.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930853390.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 8950.14, 20200504.0, 'NAA8', 1930853390.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 3980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930720562.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 52273.12, 20200331.0, 'NAH4', 1930720562.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 3981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930804143.0, '2020-04-21', 20200420, 20200421, '2020-06-25', 'USD', 'RV', 1.0, 1948.22, 20200421.0, 'NAGD', 1930804143.0, 1, '2020-06-22', 'early' ); /* INSERT QUERY NO: 3982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930844790.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 56838.7, 20200501.0, 'NAH4', 1930844790.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 3983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930767711.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 210.12, 20200401.0, 'NAM4', 1930767711.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 3984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930611605.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 2932.94, 20200306.0, 'NAH4', 1930611605.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930849071.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 53749.27, 20200502.0, 'NAA8', 1930849071.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 3986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK systems', 2020.0, 1930673620.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 64993.55, 20200319.0, 'NAA8', 1930673620.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 3987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960632740.0, '2020-05-06', 20200506, 20200506, '2020-05-17', 'CAD', 'RV', 1.0, 133186.38, 20200507.0, 'CA10', 2960632740.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 3988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930579925.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 14089.45, 20200228.0, 'NAH4', 1930579925.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 3989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930670186.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 3103.67, 20200319.0, 'NAA8', 1930670186.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 3990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE ', 2020.0, 1930772515.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 21654.76, 20200409.0, 'NAA8', 1930772515.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 3991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930763974.0, '2020-04-09', 20200408, 20200409, '2020-06-13', 'USD', 'RV', 1.0, 37264.26, 20200409.0, 'NAGD', 1930763974.0, 1, '2020-06-10', 'early' ); /* INSERT QUERY NO: 3992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO systems', 2020.0, 1930637481.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 29235.38, 20200312.0, 'NAA8', 1930637481.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 3993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930854577.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 6542.62, 20200505.0, 'NAH4', 1930854577.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 3994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930814353.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 2168.44, 20200422.0, 'NAH4', 1930814353.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 3995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930690890.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 46224.19, 20200324.0, 'NAH4', 1930690890.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 3996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930654786.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 16300.75, 20200318.0, 'NAH4', 1930654786.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 3997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR co', 2020.0, 1930837727.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 66190.38, 20200430.0, 'NAA8', 1930837727.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 3998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930628725.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 1196.74, 20200310.0, 'NAA8', 1930628725.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 3999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO systems', 2020.0, 2960627352.0, '2020-04-09', 20200409, 20200409, '2020-04-23', 'CAD', 'RV', 1.0, 26940.48, 20200413.0, 'CA10', 2960627352.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 4000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F trust', 2020.0, 1930581007.0, '2020-02-28', 20200228, 20200228, '2020-02-28', 'USD', 'RV', 1.0, 10044.0, 20200228.0, 'NAX2', 1930581007.0, 1, '2020-03-04', '0-15 days' ); /* INSERT QUERY NO: 4001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930606521.0, '2020-03-09', 20200305, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 1456.08, 20200309.0, 'NAA8', 1930606521.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 4002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930831026.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 1926.21, 20200428.0, 'NAH4', 1930831026.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930582035.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 134981.8, 20200228.0, 'NAA8', 1930582035.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 4004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930727040.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 47797.54, 20200331.0, 'NAH4', 1930727040.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & corp', 2020.0, 1930597291.0, '2020-03-04', 20200304, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 54977.73, 20200304.0, 'NAGD', 1930597291.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 4006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 100031686, 'EWT-EU llc', 2020.0, 1991838996.0, '2020-03-10', 20200306, 20200310, '2020-04-09', 'USD', 'RV', 1.0, 1758.65, 20200310.0, 'NAVE', 1991838996.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 4007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100000222, 'SMITHFIE corp', 2020.0, 1930861119.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 4806.91, 20200506.0, 'NAA8', 1930861119.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 4008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930759623.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 4367.85, 20200408.0, 'NAA8', 1930759623.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH corp', 2020.0, 1930693149.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 99391.74, 20200324.0, 'NAA8', 1930693149.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD corporation', 2020.0, 1930653043.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 6257.12, 20200316.0, 'NAA8', 1930653043.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE trust', 2020.0, 1930661203.0, '2020-03-18', 20200317, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 3975.8, 20200318.0, 'NAGD', 1930661203.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC us', 2020.0, 1930759261.0, '2020-04-15', 20200407, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 11592.0, 20200415.0, 'NAA8', 1930759261.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930763287.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 39424.76, 20200408.0, 'NAH4', 1930763287.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930576563.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 49484.88, 20200227.0, 'NAH4', 1930576563.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 4015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100026947, 'IMCOM trust', 2020.0, 1991841716.0, '2020-04-08', 20200406, 20200408, '2020-05-08', 'USD', 'RV', 1.0, 2573.88, 20200408.0, 'NAVE', 1991841716.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 4016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930690884.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 7958.65, 20200325.0, 'NAA8', 1930690884.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200826820, 'C H G foundation', 2020.0, 1930615458.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 6693.8, 20200306.0, 'NAA8', 1930615458.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR corporation', 2020.0, 1930659679.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 12244.99, 20200317.0, 'NAA8', 1930659679.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK associates', 2020.0, 1930704396.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 71302.97, 20200325.0, 'NAA8', 1930704396.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corp', 2020.0, 1930860125.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 248.4, 20200501.0, 'NAM4', 1930860125.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 4021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930586407.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 49207.33, 20200301.0, 'NAH4', 1930586407.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930729557.0, '2020-04-02', 20200401, 20200402, '2020-05-17', 'USD', 'RV', 1.0, 95366.2, 20200402.0, 'NAWP', 1930729557.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 4023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW in', 2020.0, 1930583345.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 76433.2, 20200302.0, 'NAA8', 1930583345.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - llc', 2020.0, 1930729112.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 26100.08, 20200401.0, 'NAA8', 1930729112.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930827680.0, '2020-04-28', 20200426, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 6532.6, 20200428.0, 'NAH4', 1930827680.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930715666.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 9212.63, 20200330.0, 'NAH4', 1930715666.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930779602.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 54967.15, 20200413.0, 'NAC6', 1930779602.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930828132.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 1322.22, 20200427.0, 'NAH4', 1930828132.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M foundation', 2020.0, 2960629703.0, '2020-04-17', 20200417, 20200417, '2020-04-29', 'CAD', 'RV', 1.0, 17949.39, 20200419.0, 'CA10', 2960629703.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 4030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930773141.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 4466.22, 20200401.0, 'NAM4', 1930773141.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR in', 2020.0, 1930593287.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 15373.92, 20200303.0, 'NAA8', 1930593287.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930646490.0, '2020-03-15', 20200313, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 3227.43, 20200315.0, 'NAH4', 1930646490.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930711464.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 491.76, 20200328.0, 'NAH4', 1930711464.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930842013.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 30662.21, 20200501.0, 'NAH4', 1930842013.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930753138.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 9975.85, 20200407.0, 'NAH4', 1930753138.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 4036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104229, 'A & W F ', 2020.0, 2960616596.0, '2020-03-09', 20200309, 20200309, '2020-03-19', 'CAD', 'RV', 1.0, 1537.65, 20200309.0, 'CA10', 2960616596.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 4037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET corp', 2020.0, 1930666180.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 1176.73, 20200318.0, 'NAA8', 1930666180.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG trust', 2020.0, 1930685977.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 43892.78, 20200323.0, 'NAA8', 1930685977.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930636980.0, '2020-03-10', 20200311, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 2229.13, 20200310.0, 'NAA8', 1930636980.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930640995.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 11146.0, 20200312.0, 'NAA8', 1930640995.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL corporation', 2020.0, 1930661272.0, '2020-03-26', 20200317, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 2003.16, 20200326.0, 'NAA8', 1930661272.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930652899.0, '2020-03-16', 20200316, 20200316, '2020-04-19', 'USD', 'RV', 1.0, 17296.21, 20200316.0, 'NAAW', 1930652899.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 4043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930637826.0, '2020-03-12', 20200311, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 33470.89, 20200312.0, 'NAGD', 1930637826.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 4044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930802686.0, '2020-04-19', 20200420, 20200419, '2020-06-23', 'USD', 'RV', 1.0, 5946.1, 20200419.0, 'NAGD', 1930802686.0, 1, '2020-06-17', 'early' ); /* INSERT QUERY NO: 4045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930672104.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 7402.39, 20200320.0, 'NAH4', 1930672104.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930693629.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 13402.75, 20200324.0, 'NAA8', 1930693629.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR foundation', 2020.0, 1930577104.0, '2020-03-05', 20200302, 20200305, '2020-04-06', 'USD', 'RV', 1.0, 7465.2, 20200305.0, 'NA32', 1930577104.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930801646.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 126.92, 20200420.0, 'NAA8', 1930801646.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 4049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA us', 2020.0, 1930768912.0, '2020-04-14', 20200409, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 12256.2, 20200414.0, 'NAA8', 1930768912.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930760757.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 26056.78, 20200408.0, 'NAH4', 1930760757.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930845810.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 86412.53, 20200504.0, 'NAAX', 1930845810.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930635818.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 12956.86, 20200310.0, 'NAA8', 1930635818.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930741938.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 45756.62, 20200403.0, 'NAH4', 1930741938.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH foundation', 2020.0, 1930637920.0, '2020-03-11', 20200311, 20200311, '2020-05-15', 'USD', 'RV', 1.0, 10194.61, 20200311.0, 'NAGD', 1930637920.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 4055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930718086.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 2783.1, 20200330.0, 'NAH4', 1930718086.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930623909.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 15162.48, 20200309.0, 'NAH4', 1930623909.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103335, 'PARAM corp', 2020.0, 1991839868.0, '2020-03-02', 20200227, 20200302, '2020-04-01', 'USD', 'RV', 1.0, 278.78, 20200302.0, 'NAVE', 1991839868.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 4058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930883468.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 17557.65, 20200510.0, 'NAH4', 1930883468.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930819866.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 75439.12, 20200424.0, 'NAH4', 1930819866.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200785971, 'SYSCO corp', 2020.0, 1930571659.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 26470.02, 20200227.0, 'NAA8', 1930571659.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 4061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS co', 2020.0, 1930666551.0, '2020-03-20', 20200318, 20200320, '2020-04-24', 'USD', 'RV', 1.0, 9838.08, 20200320.0, 'NAG2', 1930666551.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930800391.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 18599.68, 20200420.0, 'NAA8', 1930800391.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 4063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930647185.0, '2020-03-17', 20200313, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 65268.75, 20200317.0, 'NAH4', 1930647185.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930740170.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 8559.41, 20200405.0, 'NAH4', 1930740170.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930798184.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 3452.32, 20200417.0, 'NAC6', 1930798184.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 4066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930760510.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 38063.65, 20200408.0, 'NAH4', 1930760510.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930885118.0, '2020-05-12', 20200510, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 12803.62, 20200512.0, 'NAH4', 1930885118.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 4068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930617225.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 7466.9, 20200308.0, 'NAH4', 1930617225.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930691670.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 9525.6, 20200325.0, 'NAA8', 1930691670.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930580455.0, '2020-02-27', 20200228, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 52501.47, 20200227.0, 'NAA8', 1930580455.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 4071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930598701.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 21909.76, 20200304.0, 'NAH4', 1930598701.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 4072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL ', 2020.0, 1930675108.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 88837.45, 20200320.0, 'NAA8', 1930675108.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930592281.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 294.42, 20200303.0, 'NAA8', 1930592281.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930717795.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 82305.02, 20200329.0, 'NAA8', 1930717795.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770677, 'KRAS co', 2020.0, 1930657390.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 26272.03, 20200317.0, 'NAA8', 1930657390.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930715701.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 54168.18, 20200331.0, 'NAH4', 1930715701.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER systems', 2020.0, 1930584663.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 120018.02, 20200229.0, 'NAA8', 1930584663.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 4078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - foundation', 2020.0, 1930777620.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 13791.06, 20200411.0, 'NAA8', 1930777620.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC llc', 2020.0, 2960617812.0, '2020-02-29', 20200229, 20200229, '2020-03-13', 'CAD', 'RV', 1.0, 35836.05, 20200303.0, 'CA10', 2960617812.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 4080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930821782.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 51166.14, 20200426.0, 'NAH4', 1930821782.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930683054.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 17289.88, 20200323.0, 'NAH4', 1930683054.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 4082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN trust', 2020.0, 1930800479.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 32249.66, 20200418.0, 'NAA8', 1930800479.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930582839.0, '2020-03-01', 20200229, 20200301, '2020-05-05', 'USD', 'RV', 1.0, 18084.6, 20200301.0, 'NAGD', 1930582839.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930710634.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 47.28, 20200328.0, 'NAH4', 1930710634.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI trust', 2020.0, 1930856106.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 71358.14, 20200504.0, 'NAA8', 1930856106.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corporation', 2020.0, 1930819314.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1825.2, 20200424.0, 'NAA8', 1930819314.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930713767.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 6664.38, 20200329.0, 'NAH4', 1930713767.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200786288, 'FAMILY us', 2020.0, 1930855287.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 91375.67, 20200505.0, 'NAC6', 1930855287.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER corporation', 2020.0, 1930610437.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 81584.81, 20200306.0, 'NAA8', 1930610437.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU trust', 2020.0, 1930654643.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 55572.59, 20200316.0, 'NAA8', 1930654643.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 4091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930855855.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 8949.7, 20200504.0, 'NAH4', 1930855855.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 4092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC systems', 2020.0, 1930586639.0, '2020-03-05', 20200302, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 11322.3, 20200305.0, 'NAA8', 1930586639.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930780324.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 787.92, 20200414.0, 'NAA8', 1930780324.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930831751.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 57428.8, 20200429.0, 'NAH4', 1930831751.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 4095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930623405.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 3207.79, 20200309.0, 'NAH4', 1930623405.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG llc', 2020.0, 1930668492.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 97871.56, 20200318.0, 'NAA8', 1930668492.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930793329.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 19935.22, 20200418.0, 'NAA8', 1930793329.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930810358.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 10475.19, 20200422.0, 'NAA8', 1930810358.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930652878.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 13883.47, 20200318.0, 'NAH4', 1930652878.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930826049.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 4752.6, 20200426.0, 'NAH4', 1930826049.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930693399.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 60674.0, 20200326.0, 'NAA8', 1930693399.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE systems', 2020.0, 1930728160.0, '2020-04-10', 20200401, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 3283.57, 20200410.0, 'NAA8', 1930728160.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930623437.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 10784.16, 20200310.0, 'NAC6', 1930623437.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930752609.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 43763.96, 20200406.0, 'NAH4', 1930752609.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200246495, 'PERFOR ', 2020.0, 1930647136.0, '2020-03-12', 20200313, 20200312, '2020-04-13', 'USD', 'RV', 1.0, 5338.2, 20200312.0, 'NA32', 1930647136.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100030964, 'NATURA systems', 2020.0, 1930885026.0, '2020-05-13', 20200510, 20200513, '2020-05-28', 'USD', 'RV', 1.0, 16614.2, 20200513.0, 'NAA8', 1930885026.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corp', 2020.0, 1930653593.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 1969.6, 20200315.0, 'NAA8', 1930653593.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930655648.0, '2020-03-13', 20200316, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 297.56, 20200313.0, 'NAA8', 1930655648.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930600082.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 12801.04, 20200305.0, 'NAU5', 1930600082.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 4110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930782843.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 57934.55, 20200413.0, 'NAA8', 1930782843.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793319, 'SHERM\'S associates', 2020.0, 1930610979.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 56758.1, 20200306.0, 'NAA8', 1930610979.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY systems', 2020.0, 1930787880.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 14188.98, 20200417.0, 'NAC6', 1930787880.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 4113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960623511.0, '2020-03-24', 20200324, 20200324, '2020-04-05', 'CAD', 'RV', 1.0, 113728.01, 20200326.0, 'CA10', 2960623511.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 4114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930733933.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 66747.76, 20200403.0, 'NAH4', 1930733933.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930703605.0, '2020-03-25', 20200325, 20200325, '2020-05-29', 'USD', 'RV', 1.0, 1909.44, 20200325.0, 'NAGD', 1930703605.0, 1, '2020-05-25', 'early' ); /* INSERT QUERY NO: 4116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930593448.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 7791.94, 20200304.0, 'NAH4', 1930593448.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 4117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930806206.0, '2020-04-18', 20200421, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 35.73, 20200418.0, 'NAA8', 1930806206.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930798408.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 33.18, 20200417.0, 'NAA8', 1930798408.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930841953.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 17881.45, 20200502.0, 'NAH4', 1930841953.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761342, 'EL GR ', 2020.0, 1930798459.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 26639.05, 20200417.0, 'NAA8', 1930798459.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930573673.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 65513.42, 20200227.0, 'NAH4', 1930573673.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 4122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- corp', 2020.0, 2960624661.0, '2020-03-28', 20200328, 20200328, '2020-04-15', 'CAD', 'RV', 1.0, 94812.07, 20200405.0, 'CA10', 2960624661.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 4123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960629475.0, '2020-04-24', 20200426, 20200424, '2020-05-11', 'CAD', 'RV', 1.0, 55941.35, 20200501.0, 'CA10', 2960629475.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 4124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK associates', 2020.0, 1930599308.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 21486.36, 20200304.0, 'NAA8', 1930599308.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS in', 2020.0, 1930838000.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 117226.28, 20200430.0, 'NAA8', 1930838000.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930671729.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 13114.9, 20200321.0, 'NAAX', 1930671729.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930753237.0, '2020-04-09', 20200406, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 17033.43, 20200409.0, 'NAA8', 1930753237.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR systems', 2020.0, 2960619831.0, '2020-03-09', 20200309, 20200309, '2020-03-21', 'CAD', 'RV', 1.0, 2452.75, 20200311.0, 'CA10', 2960619831.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 4129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930794902.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 1995.84, 20200417.0, 'NAH4', 1930794902.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200668077, 'IN-N- co', 2020.0, 1930650903.0, '2020-03-17', 20200313, 20200317, '2020-03-27', 'USD', 'RV', 1.0, 26582.4, 20200317.0, 'NA10', 1930650903.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930881140.0, '2020-05-10', 20200508, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 61069.57, 20200510.0, 'NAH4', 1930881140.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930720153.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 27480.98, 20200331.0, 'NAH4', 1930720153.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR associates', 2020.0, 1930767672.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 37981.17, 20200410.0, 'NAA8', 1930767672.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930593353.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 5126.33, 20200303.0, 'NAH4', 1930593353.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930787721.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 460.22, 20200414.0, 'NAA8', 1930787721.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR corp', 2020.0, 1930727437.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 135325.1, 20200401.0, 'NAA8', 1930727437.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930799284.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 36714.32, 20200420.0, 'NAH4', 1930799284.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 4138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930778131.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 15617.83, 20200413.0, 'NAH4', 1930778131.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE ', 2020.0, 1930821552.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 62674.14, 20200423.0, 'NAA8', 1930821552.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930687670.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 10550.51, 20200330.0, 'NAA8', 1930687670.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930611611.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 485.58, 20200306.0, 'NAH4', 1930611611.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930649476.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 52491.21, 20200314.0, 'NAH4', 1930649476.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930698646.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 12949.71, 20200325.0, 'NAA8', 1930698646.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930671192.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 19600.65, 20200320.0, 'NAAX', 1930671192.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930799575.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 32556.19, 20200420.0, 'NAH4', 1930799575.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 4146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930781362.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 665.37, 20200413.0, 'NAA8', 1930781362.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930844755.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 22050.14, 20200430.0, 'NAH4', 1930844755.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 4148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930619154.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 71.11, 20200308.0, 'NAH4', 1930619154.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200253680, 'SCHWANS llc', 2020.0, 1930761444.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 45400.0, 20200407.0, 'NAA8', 1930761444.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930749342.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 8949.7, 20200405.0, 'NAH4', 1930749342.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930683787.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 150.52, 20200322.0, 'NAH4', 1930683787.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036318, 'TFC corp', 2020.0, 1930829671.0, '2020-04-27', 20200427, 20200427, '2020-05-07', 'USD', 'RV', 1.0, 4025.0, 20200427.0, 'NA10', 1930829671.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930837635.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 4088.45, 20200501.0, 'NAH4', 1930837635.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930856541.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 8704.68, 20200505.0, 'NAA8', 1930856541.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930756439.0, '2020-04-07', 20200407, 20200407, '2020-06-11', 'USD', 'RV', 1.0, 11139.76, 20200407.0, 'NAGD', 1930756439.0, 1, '2020-06-09', 'early' ); /* INSERT QUERY NO: 4156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930709248.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 35798.82, 20200328.0, 'NAH4', 1930709248.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930713808.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 55652.06, 20200329.0, 'NAH4', 1930713808.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930714408.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 15066.78, 20200329.0, 'NAH4', 1930714408.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960628452.0, '2020-04-14', 20200414, 20200414, '2020-04-26', 'CAD', 'RV', 1.0, 62195.77, 20200416.0, 'CA10', 2960628452.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 4160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200895843, 'US trust', 2020.0, 1930780794.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 17071.28, 20200413.0, 'NAA8', 1930780794.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930699161.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 50727.44, 20200326.0, 'NAH4', 1930699161.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930727155.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 7473.95, 20200401.0, 'NAH4', 1930727155.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 4163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR corp', 2020.0, 1930760309.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 83687.79, 20200408.0, 'NAA8', 1930760309.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE associates', 2020.0, 1930711425.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 10368.26, 20200327.0, 'NAA8', 1930711425.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104277, 'WALLA corp', 2020.0, 2960622996.0, '2020-03-22', 20200323, 20200322, '2020-04-10', 'CAD', 'RV', 1.0, 25877.17, 20200331.0, 'CA10', 2960622996.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 4166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930696189.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 10002.96, 20200327.0, 'NAH4', 1930696189.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930752834.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 45895.18, 20200408.0, 'NAH4', 1930752834.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 4168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930583834.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 1118.71, 20200301.0, 'NAH4', 1930583834.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930883714.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 15766.26, 20200510.0, 'NAH4', 1930883714.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 4170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC ', 2020.0, 1930698376.0, '2020-03-25', 20200325, 20200325, '2020-03-23', 'USD', 'RV', 1.0, 5634.76, 20200316.0, 'NAM1', 1930698376.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB in', 2020.0, 2960633560.0, '2020-05-08', 20200508, 20200508, '2020-05-22', 'CAD', 'RV', 1.0, 70086.83, 20200512.0, 'CA10', 2960633560.0, 1, '2020-05-26', '0-15 days' ); /* INSERT QUERY NO: 4172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA in', 2020.0, 1930854597.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 368.89, 20200504.0, 'NAA8', 1930854597.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG us', 2020.0, 1930632474.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 52395.27, 20200311.0, 'NAA8', 1930632474.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER associates', 2020.0, 1930669916.0, '2020-03-19', 20200318, 20200319, '2020-05-23', 'USD', 'RV', 1.0, 16710.06, 20200319.0, 'NAGD', 1930669916.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960628823.0, '2020-04-14', 20200414, 20200414, '2020-04-25', 'CAD', 'RV', 1.0, 37442.96, 20200415.0, 'CA10', 2960628823.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 4176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781831, 'RITE in', 2020.0, 1930592849.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 61387.55, 20200302.0, 'NAA8', 1930592849.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930815106.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 17208.96, 20200422.0, 'NAU5', 1930815106.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 4178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930623629.0, '2020-03-10', 20200309, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 20335.92, 20200310.0, 'NAGD', 1930623629.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR foundation', 2020.0, 1930685385.0, '2020-03-25', 20200322, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 93459.45, 20200325.0, 'NAA8', 1930685385.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930725817.0, '2020-03-31', 20200331, 20200331, '2020-05-02', 'USD', 'RV', 1.0, 21300.29, 20200331.0, 'NA32', 1930725817.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA foundation', 2020.0, 1930667173.0, '2020-03-25', 20200318, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 2289.5, 20200325.0, 'NAA8', 1930667173.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY foundation', 2020.0, 1930725161.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 14016.76, 20200401.0, 'NAA8', 1930725161.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742791, 'QUI trust', 2020.0, 1930814489.0, '2020-04-27', 20200422, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 30558.44, 20200427.0, 'NAA8', 1930814489.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930752889.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 39861.15, 20200406.0, 'NAC6', 1930752889.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930610094.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 271.59, 20200306.0, 'NAA8', 1930610094.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930593705.0, '2020-03-04', 20200303, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 3642.93, 20200304.0, 'NAGD', 1930593705.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930764669.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 16745.35, 20200409.0, 'NAH4', 1930764669.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930739586.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 1017.41, 20200405.0, 'NAH4', 1930739586.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930686960.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 28579.16, 20200323.0, 'NAH4', 1930686960.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER systems', 2020.0, 1930783532.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 2646.76, 20200414.0, 'NAA8', 1930783532.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO trust', 2020.0, 2960619225.0, '2020-03-09', 20200309, 20200309, '2020-03-21', 'CAD', 'RV', 1.0, 26151.78, 20200311.0, 'CA10', 2960619225.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 4192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930645736.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3421.92, 20200313.0, 'NAH4', 1930645736.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930691823.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 44819.38, 20200324.0, 'NAU5', 1930691823.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930779502.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 111795.36, 20200413.0, 'NAC6', 1930779502.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930624060.0, '2020-03-09', 20200309, 20200309, '2020-04-10', 'USD', 'RV', 1.0, 24256.75, 20200309.0, 'NA32', 1930624060.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930752885.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 8009.98, 20200407.0, 'NAA8', 1930752885.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930703438.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 15418.17, 20200326.0, 'NAH4', 1930703438.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS trust', 2020.0, 1930653112.0, '2020-03-18', 20200314, 20200318, '2020-04-22', 'USD', 'RV', 1.0, 9913.92, 20200318.0, 'NAG2', 1930653112.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930828610.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 10747.54, 20200426.0, 'NAA8', 1930828610.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930622186.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 33909.8, 20200309.0, 'NAH4', 1930622186.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930879517.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 5026.38, 20200508.0, 'NAA8', 1930879517.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 4202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930859429.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 14311.81, 20200506.0, 'NAH4', 1930859429.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - in', 2020.0, 1930844863.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 20167.61, 20200430.0, 'NAA8', 1930844863.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930732610.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 1792.66, 20200402.0, 'NAH4', 1930732610.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960616661.0, '2020-02-27', 20200227, 20200227, '2020-03-08', 'CAD', 'RV', 1.0, 71183.82, 20200227.0, 'CA10', 2960616661.0, 1, '2020-03-12', '0-15 days' ); /* INSERT QUERY NO: 4206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930783835.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 359.64, 20200415.0, 'NAA8', 1930783835.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930683173.0, '2020-03-20', 20200321, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 27696.19, 20200320.0, 'NAH4', 1930683173.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 4208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930753932.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'USD', 'RV', 1.0, 18113.4, 20200401.0, 'NAM4', 1930753932.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200789077, 'US foundation', 2020.0, 1930721330.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 27363.66, 20200330.0, 'NAA8', 1930721330.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO corporation', 2020.0, 1930813977.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 42896.42, 20200422.0, 'NAA8', 1930813977.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930811018.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 3969.13, 20200422.0, 'NAA8', 1930811018.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140103311, 'GLOBA corp', 2020.0, 1991842145.0, '2020-04-18', 20200414, 20200418, '2020-05-18', 'USD', 'RV', 1.0, 530.84, 20200418.0, 'NAVE', 1991842145.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 4213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930670043.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 22649.05, 20200320.0, 'NAC6', 1930670043.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200458131, 'TIMES trust', 2020.0, 1930759834.0, '2020-04-14', 20200407, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 983.05, 20200414.0, 'NAA8', 1930759834.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930772692.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 20499.8, 20200412.0, 'NAH4', 1930772692.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corporation', 2020.0, 1930681839.0, '2020-03-21', 20200321, 20200321, '2020-04-08', 'USD', 'RV', 1.0, 388.68, 20200316.0, 'NAM4', 1930681839.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930699482.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 14212.04, 20200325.0, 'NAH4', 1930699482.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930845033.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 3656.14, 20200502.0, 'NAC6', 1930845033.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 4219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO in', 2020.0, 2960624076.0, '2020-03-30', 20200330, 20200330, '2020-04-11', 'CAD', 'RV', 1.0, 40288.97, 20200401.0, 'CA10', 2960624076.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 4220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO in', 2020.0, 1930584477.0, '2020-03-02', 20200229, 20200302, '2020-04-03', 'USD', 'RV', 1.0, 29796.78, 20200302.0, 'NA32', 1930584477.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 4221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US trust', 2020.0, 1930820002.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 25269.92, 20200423.0, 'NAA8', 1930820002.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930637087.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 88865.85, 20200311.0, 'NAA8', 1930637087.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930652156.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 110425.5, 20200315.0, 'NAA8', 1930652156.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO associates', 2020.0, 2960627171.0, '2020-04-13', 20200413, 20200413, '2020-04-27', 'CAD', 'RV', 1.0, 13208.3, 20200417.0, 'CA10', 2960627171.0, 1, '2020-05-02', '0-15 days' ); /* INSERT QUERY NO: 4225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930586909.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 31853.09, 20200304.0, 'NAH4', 1930586909.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930603405.0, '2020-03-11', 20200304, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 34077.39, 20200311.0, 'NAA8', 1930603405.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL systems', 2020.0, 1930793195.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 30820.62, 20200416.0, 'NAA8', 1930793195.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE in', 2020.0, 1930758598.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 130301.75, 20200407.0, 'NAA8', 1930758598.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930630139.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 39811.96, 20200311.0, 'NAH4', 1930630139.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 4230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200781803, 'JRD corp', 2020.0, 1930876951.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 9544.36, 20200508.0, 'NAA8', 1930876951.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930723937.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 40064.53, 20200401.0, 'NAH4', 1930723937.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 4232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960619169.0, '2020-03-10', 20200310, 20200310, '2020-03-22', 'CAD', 'RV', 1.0, 56991.63, 20200312.0, 'CA10', 2960619169.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 4233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930817896.0, '2020-04-23', 20200423, 20200423, '2020-05-13', 'USD', 'RV', 1.0, 82263.47, 20200423.0, 'NAD1', 1930817896.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 4234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930718713.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3951.01, 20200330.0, 'NAH4', 1930718713.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930753883.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 46144.21, 20200407.0, 'NAC6', 1930753883.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO associates', 2020.0, 1930619134.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 43458.61, 20200309.0, 'NAA8', 1930619134.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO co', 2020.0, 2960624962.0, '2020-04-01', 20200401, 20200401, '2020-04-14', 'CAD', 'RV', 1.0, 158984.18, 20200404.0, 'CA10', 2960624962.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 4238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930837791.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 21746.36, 20200429.0, 'NAH4', 1930837791.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 4239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR corp', 2020.0, 1930860239.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 21190.82, 20200506.0, 'NAA8', 1930860239.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930763636.0, '2020-04-07', 20200408, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 113122.4, 20200407.0, 'NAA8', 1930763636.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B in', 2020.0, 1930799164.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 22568.5, 20200421.0, 'NAA8', 1930799164.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN in', 2020.0, 1930786279.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 106160.27, 20200414.0, 'NAA8', 1930786279.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930795633.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 519.91, 20200417.0, 'NAA8', 1930795633.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930668389.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 14203.23, 20200320.0, 'NAH4', 1930668389.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH in', 2020.0, 1930646722.0, '2020-03-13', 20200313, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 16861.31, 20200313.0, 'NAGD', 1930646722.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 4246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930692511.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 33055.55, 20200326.0, 'NAH4', 1930692511.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO co', 2020.0, 1930580203.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 39529.67, 20200227.0, 'NAA8', 1930580203.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 4248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA trust', 2020.0, 1930586979.0, '2020-03-02', 20200303, 20200302, '2020-04-01', 'USD', 'RV', 1.0, 48749.88, 20200302.0, 'NAD5', 1930586979.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 4249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930711072.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 59328.17, 20200328.0, 'NAC6', 1930711072.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930688160.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 40455.53, 20200325.0, 'NAAX', 1930688160.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930850082.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 13272.83, 20200504.0, 'NAH4', 1930850082.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 4252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930582772.0, '2020-02-29', 20200229, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 767.69, 20200229.0, 'NAGD', 1930582772.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 4253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930629641.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 22633.65, 20200310.0, 'NAH4', 1930629641.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930884341.0, '2020-05-11', 20200509, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 4332.64, 20200511.0, 'NAH4', 1930884341.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930727080.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 25668.18, 20200402.0, 'NAH4', 1930727080.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 4256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930828598.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 52250.06, 20200426.0, 'NAA8', 1930828598.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930752333.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 45391.4, 20200406.0, 'NAA8', 1930752333.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'HEIN trust', 2020.0, 1991841279.0, '2020-04-03', 20200403, 20200403, '2020-05-18', 'USD', 'RV', 1.0, 13732.82, 20200403.0, 'NAVF', 1991841279.0, 1, '2020-05-29', '0-15 days' ); /* INSERT QUERY NO: 4259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930612719.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 51385.48, 20200306.0, 'NAH4', 1930612719.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930851308.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 16237.55, 20200502.0, 'NAH4', 1930851308.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M ', 2020.0, 1930665545.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 5679.9, 20200319.0, 'NAA8', 1930665545.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 4262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR llc', 2020.0, 1930606614.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 3885.93, 20200305.0, 'NAA8', 1930606614.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721530, 'REDNE associates', 2020.0, 1930691658.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 43403.04, 20200323.0, 'NAA8', 1930691658.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930842877.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 29201.2, 20200501.0, 'NAH4', 1930842877.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930774101.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 6642.15, 20200412.0, 'NAH4', 1930774101.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930619457.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 21805.64, 20200308.0, 'NAA8', 1930619457.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG foundation', 2020.0, 1930660808.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21710.39, 20200316.0, 'NAA8', 1930660808.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 4268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930750314.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 5618.44, 20200405.0, 'NAA8', 1930750314.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 4269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930778387.0, '2020-04-14', 20200411, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 60697.2, 20200414.0, 'NAH4', 1930778387.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT foundation', 2020.0, 1930689674.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 85676.36, 20200325.0, 'NAA8', 1930689674.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S corp', 2020.0, 1930582799.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 14189.05, 20200301.0, 'NAA8', 1930582799.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 4272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001452, 'COASTAL co', 2020.0, 1930843268.0, '2020-05-07', 20200504, 20200507, '2020-05-27', 'USD', 'RV', 1.0, 3271.73, 20200507.0, 'NAD1', 1930843268.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104423, 'METRO foundation', 2020.0, 2960626966.0, '2020-04-06', 20200406, 20200406, '2020-04-18', 'CAD', 'RV', 1.0, 47653.79, 20200408.0, 'CA10', 2960626966.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 4274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930674675.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 1322.22, 20200321.0, 'NAH4', 1930674675.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO us', 2020.0, 2960627213.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'CAD', 'RV', 1.0, 104312.47, 20200414.0, 'CA10', 2960627213.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 4276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930676657.0, '2020-03-23', 20200320, 20200323, '2020-05-07', 'USD', 'RV', 1.0, 130200.29, 20200323.0, 'NAWP', 1930676657.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 4277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930810784.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 13023.35, 20200422.0, 'NAH4', 1930810784.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930778761.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 134639.28, 20200413.0, 'NAA8', 1930778761.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930852532.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 11604.02, 20200505.0, 'NAA8', 1930852532.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930830281.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 16888.25, 20200428.0, 'NAA8', 1930830281.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104392, 'FLANAG us', 2020.0, 2960633045.0, '2020-05-07', 20200507, 20200507, '2020-05-19', 'CAD', 'RV', 1.0, 4577.92, 20200509.0, 'CA10', 2960633045.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 4282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC associates', 2020.0, 1930605345.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 3478.16, 20200301.0, 'NAM4', 1930605345.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG foundation', 2020.0, 1930851058.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 20516.82, 20200502.0, 'NAA8', 1930851058.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 4284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930837948.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 19868.8, 20200430.0, 'NAH4', 1930837948.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 4285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930791325.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 54998.99, 20200416.0, 'NAH4', 1930791325.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 4286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930647647.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 58721.3, 20200313.0, 'NAH4', 1930647647.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ co', 2020.0, 1930799360.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 4393.04, 20200419.0, 'NAA8', 1930799360.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 4288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778998, 'CE co', 2020.0, 1930739505.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 60050.53, 20200403.0, 'NAA8', 1930739505.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778355, 'US us', 2020.0, 1930794342.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 39751.25, 20200415.0, 'NAA8', 1930794342.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL co', 2020.0, 1930620579.0, '2020-03-10', 20200307, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 38798.71, 20200310.0, 'NAA8', 1930620579.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930822176.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 419.43, 20200423.0, 'NAA8', 1930822176.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E corp', 2020.0, 1930577412.0, '2020-02-27', 20200227, 20200227, '2020-03-18', 'USD', 'RV', 1.0, 89481.11, 20200227.0, 'NAD1', 1930577412.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930877305.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 41628.69, 20200508.0, 'NAH4', 1930877305.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 4294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930636566.0, '2020-03-10', 20200311, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 50567.88, 20200310.0, 'NAH4', 1930636566.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930655308.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 3403.8, 20200315.0, 'NAH4', 1930655308.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F us', 2020.0, 2960626474.0, '2020-04-05', 20200405, 20200405, '2020-04-17', 'CAD', 'RV', 1.0, 1155.0, 20200407.0, 'CA10', 2960626474.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 4297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930775555.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 32538.24, 20200411.0, 'NAA8', 1930775555.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930806254.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 77720.61, 20200421.0, 'NAC6', 1930806254.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930824696.0, '2020-04-28', 20200426, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 40292.9, 20200428.0, 'NAH4', 1930824696.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930796489.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 60870.69, 20200416.0, 'NAA8', 1930796489.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO associates', 2020.0, 2960622054.0, '2020-03-21', 20200321, 20200321, '2020-03-31', 'CAD', 'RV', 1.0, 54015.25, 20200321.0, 'CA10', 2960622054.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 4302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100024776, 'PEA co', 2020.0, 1930652021.0, '2020-03-16', 20200314, 20200316, '2020-04-20', 'USD', 'RV', 1.0, 15090.34, 20200316.0, 'NAG2', 1930652021.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930659866.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 69819.75, 20200317.0, 'NAA8', 1930659866.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 4304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943275, 'US associates', 2020.0, 1930555860.0, '2020-02-28', 20200221, 20200228, '2020-03-19', 'USD', 'RV', 1.0, 1072.5, 20200228.0, 'NAD1', 1930555860.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778998, 'CE us', 2020.0, 1930692651.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 144975.73, 20200325.0, 'NAA8', 1930692651.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C us', 2020.0, 1930595991.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 17579.66, 20200303.0, 'NAA8', 1930595991.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200778870, 'C associates', 2020.0, 1930709165.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 89960.61, 20200327.0, 'NAA8', 1930709165.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930794331.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 38345.98, 20200416.0, 'NAAX', 1930794331.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corporation', 2020.0, 2960629412.0, '2020-04-18', 20200418, 20200418, '2020-05-01', 'CAD', 'RV', 1.0, 300493.52, 20200421.0, 'CA10', 2960629412.0, 1, '2020-05-05', '0-15 days' ); /* INSERT QUERY NO: 4310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718164, 'JC F corporation', 2020.0, 1930832557.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 17519.05, 20200429.0, 'NAA8', 1930832557.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ foundation', 2020.0, 1930594469.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 68173.48, 20200303.0, 'NAA8', 1930594469.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930778709.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 54788.26, 20200411.0, 'NAU5', 1930778709.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772595, 'SAFEW foundation', 2020.0, 1930855143.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 125244.06, 20200503.0, 'NAA8', 1930855143.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL associates', 2020.0, 1930678733.0, '2020-03-24', 20200320, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 15359.35, 20200324.0, 'NAA8', 1930678733.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930863167.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 8287.96, 20200508.0, 'NAH4', 1930863167.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 4316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN in', 2020.0, 1930675155.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 5358.08, 20200320.0, 'NAA8', 1930675155.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 4317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960624245.0, '2020-03-26', 20200326, 20200326, '2020-04-13', 'CAD', 'RV', 1.0, 77929.2, 20200403.0, 'CA10', 2960624245.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 4318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106376, 'ISLAND us', 2020.0, 2960624341.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'CAD', 'RV', 1.0, 3246.21, 20200330.0, 'CA10', 2960624341.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 4319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO systems', 2020.0, 2960618241.0, '2020-03-02', 20200302, 20200302, '2020-03-14', 'CAD', 'RV', 1.0, 4561.05, 20200304.0, 'CA10', 2960618241.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 4320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930584733.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 25702.57, 20200301.0, 'NAH4', 1930584733.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930849516.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 27917.6, 20200504.0, 'NAH4', 1930849516.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 4322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C in', 2020.0, 1930828276.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 53307.51, 20200427.0, 'NAA8', 1930828276.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930685640.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 16341.07, 20200324.0, 'NAH4', 1930685640.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930831165.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 34674.8, 20200428.0, 'NAH4', 1930831165.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA ', 2020.0, 1930594529.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 1964.14, 20200303.0, 'NAA8', 1930594529.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930589563.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 97679.45, 20200303.0, 'NAA8', 1930589563.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200738884, 'US co', 2020.0, 1930686675.0, '2020-03-26', 20200323, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 9249.45, 20200326.0, 'NAA8', 1930686675.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960633932.0, '2020-05-10', 20200510, 20200510, '2020-05-22', 'CAD', 'RV', 1.0, 19968.63, 20200512.0, 'CA10', 2960633932.0, 1, '2020-05-26', '0-15 days' ); /* INSERT QUERY NO: 4329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA associates', 2020.0, 1930669439.0, '2020-03-25', 20200318, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 9626.8, 20200325.0, 'NAA8', 1930669439.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930730898.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 15794.59, 20200403.0, 'NAH4', 1930730898.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930580246.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 1329.23, 20200229.0, 'NAH4', 1930580246.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - ', 2020.0, 1930835843.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 22049.75, 20200428.0, 'NAA8', 1930835843.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 4333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA llc', 2020.0, 1930723447.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 2671.57, 20200330.0, 'NAA8', 1930723447.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930586366.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 40537.59, 20200303.0, 'NAH4', 1930586366.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930687264.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 36262.36, 20200323.0, 'NAH4', 1930687264.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930629679.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 49161.62, 20200311.0, 'NAH4', 1930629679.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 4337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930813727.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 59597.71, 20200422.0, 'NAC6', 1930813727.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT us', 2020.0, 1930675968.0, '2020-03-28', 20200320, 20200328, '2020-05-02', 'USD', 'RV', 1.0, 57295.7, 20200328.0, 'NAG2', 1930675968.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930611712.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 680.64, 20200308.0, 'NAH4', 1930611712.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW ', 2020.0, 1930738265.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 68155.57, 20200403.0, 'NAA8', 1930738265.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH trust', 2020.0, 1930659948.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 65776.56, 20200317.0, 'NAC6', 1930659948.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE in', 2020.0, 1930739180.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 14261.4, 20200403.0, 'NAA8', 1930739180.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 4343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M associates', 2020.0, 2960620095.0, '2020-03-17', 20200317, 20200317, '2020-03-28', 'CAD', 'RV', 1.0, 42716.77, 20200318.0, 'CA10', 2960620095.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 4344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930682694.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 6649.13, 20200322.0, 'NAH4', 1930682694.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL corporation', 2020.0, 1930814450.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 7913.79, 20200422.0, 'NAA8', 1930814450.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930586213.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 21806.38, 20200302.0, 'NAH4', 1930586213.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930882699.0, '2020-05-11', 20200509, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 11051.93, 20200511.0, 'NAH4', 1930882699.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200210681, 'HUB us', 2020.0, 1930609462.0, '2020-03-09', 20200305, 20200309, '2020-03-29', 'USD', 'RV', 1.0, 13659.6, 20200309.0, 'NAD1', 1930609462.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 4349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930827642.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 29765.6, 20200426.0, 'NAH4', 1930827642.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930676488.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 3904.66, 20200321.0, 'NAAX', 1930676488.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930577225.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 2800.84, 20200229.0, 'NAH4', 1930577225.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960628585.0, '2020-04-17', 20200417, 20200417, '2020-04-30', 'CAD', 'RV', 1.0, 50348.39, 20200420.0, 'CA10', 2960628585.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 4353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC associates', 2020.0, 1930857295.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 4563.08, 20200501.0, 'NAM4', 1930857295.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 4354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930880720.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 11136.57, 20200509.0, 'NAH4', 1930880720.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 4355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930714859.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 40428.17, 20200330.0, 'NAH4', 1930714859.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 4356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930673400.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 24145.26, 20200321.0, 'NAA8', 1930673400.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR corp', 2020.0, 1930600161.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 54228.72, 20200304.0, 'NAA8', 1930600161.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930774942.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 18260.52, 20200411.0, 'NAA8', 1930774942.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR corp', 2020.0, 1930705682.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 134031.44, 20200328.0, 'NAA8', 1930705682.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930611404.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 12614.71, 20200306.0, 'NAH4', 1930611404.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930709184.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 22771.87, 20200327.0, 'NAH4', 1930709184.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA us', 2020.0, 1930585741.0, '2020-03-02', 20200302, 20200302, '2020-03-11', 'USD', 'RV', 1.0, 6544.28, 20200301.0, 'NAM2', 1930585741.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 4363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930833459.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 48618.69, 20200429.0, 'NAH4', 1930833459.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 4364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930809858.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 42173.31, 20200422.0, 'NAC6', 1930809858.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930646380.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 17888.46, 20200314.0, 'NAA8', 1930646380.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 4366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930861691.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 30674.03, 20200507.0, 'NAA8', 1930861691.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930801808.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 79919.67, 20200420.0, 'NAH4', 1930801808.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930858176.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 2603.24, 20200505.0, 'NAH4', 1930858176.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M trust', 2020.0, 1930624447.0, '2020-03-10', 20200309, 20200310, '2020-04-15', 'USD', 'RV', 1.0, 1909.56, 20200415.0, 'NACG', 1930624447.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 4370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930789748.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 99.54, 20200416.0, 'NAA8', 1930789748.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792734, 'MDV/ corporation', 2020.0, 1930842762.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 4462.22, 20200501.0, 'NAA8', 1930842762.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 4372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930793181.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 1898.9, 20200417.0, 'NAH4', 1930793181.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC us', 2020.0, 1930715447.0, '2020-03-23', 20200328, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 23871.23, 20200323.0, 'NAA8', 1930715447.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930705777.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 1329.23, 20200328.0, 'NAH4', 1930705777.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930729427.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 13617.89, 20200403.0, 'NAH4', 1930729427.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719526, 'SHARP S us', 2020.0, 1930716549.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 5075.0, 20200331.0, 'NAA8', 1930716549.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE llc', 2020.0, 1930792498.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 27221.36, 20200415.0, 'NAA8', 1930792498.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930622662.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 101407.62, 20200308.0, 'NAA8', 1930622662.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930597745.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 64923.82, 20200305.0, 'NAH4', 1930597745.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 4380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR ', 2020.0, 1930765414.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 56273.17, 20200409.0, 'NAA8', 1930765414.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104225, 'SAVE-ON- corporation', 2020.0, 2960622135.0, '2020-03-19', 20200319, 20200319, '2020-03-29', 'CAD', 'RV', 1.0, 103961.28, 20200319.0, 'CA10', 2960622135.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 4382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930830134.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 471.56, 20200427.0, 'NAH4', 1930830134.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR co', 2020.0, 1930729919.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 34055.54, 20200402.0, 'NAA8', 1930729919.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200763229, 'MAINES in', 2020.0, 1930632930.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 22461.46, 20200312.0, 'NAA8', 1930632930.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 4385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930780813.0, '2020-04-05', 20200413, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 377.01, 20200405.0, 'NAA8', 1930780813.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ llc', 2020.0, 1930814106.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 897.23, 20200421.0, 'NAA8', 1930814106.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U005', 0100025658, 'PEA trust', 2020.0, 1930806299.0, '2020-04-21', 20200421, 20200421, '2020-05-21', 'USD', 'RV', 1.0, 9961.58, 20200421.0, 'NAD5', 1930806299.0, 1, '2020-05-31', '0-15 days' ); /* INSERT QUERY NO: 4388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE systems', 2020.0, 1930709588.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 7064.61, 20200331.0, 'NAA8', 1930709588.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT in', 2020.0, 1930684926.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 121847.86, 20200322.0, 'NAU5', 1930684926.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 4390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930583717.0, '2020-02-29', 20200229, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 6833.38, 20200229.0, 'NAGD', 1930583717.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 4391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200724999, 'GILSTE in', 2020.0, 1930782603.0, '2020-04-08', 20200413, 20200408, '2020-04-18', 'USD', 'RV', 1.0, 41091.84, 20200408.0, 'NA10', 1930782603.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930829332.0, '2020-04-18', 20200427, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 33.18, 20200418.0, 'NAA8', 1930829332.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930747774.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 43536.37, 20200405.0, 'NAH4', 1930747774.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930725442.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 27694.56, 20200401.0, 'NAH4', 1930725442.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 4395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930744640.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 8128.51, 20200404.0, 'NAA8', 1930744640.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930646818.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 13481.11, 20200314.0, 'NAH4', 1930646818.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200486270, 'BAR associates', 2020.0, 1930790981.0, '2020-04-21', 20200415, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 5719.31, 20200421.0, 'NAA8', 1930790981.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 4398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930862272.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 88683.69, 20200506.0, 'NAA8', 1930862272.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 4399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA foundation', 2020.0, 1930837705.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 61383.55, 20200429.0, 'NAA8', 1930837705.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930758735.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 20250.05, 20200408.0, 'NAC6', 1930758735.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930739487.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 1524.91, 20200403.0, 'NAA8', 1930739487.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 4402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200782669, 'SYGMA associates', 2020.0, 1930629821.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 1207.2, 20200311.0, 'NAA8', 1930629821.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793830, 'M in', 2020.0, 1930854617.0, '2020-05-03', 20200503, 20200503, '2020-07-07', 'USD', 'RV', 1.0, 9179.96, 20200503.0, 'NAGD', 1930854617.0, 1, '2020-07-06', 'early' ); /* INSERT QUERY NO: 4404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corporation', 2020.0, 2960632529.0, '2020-05-01', 20200501, 20200501, '2020-05-12', 'CAD', 'RV', 1.0, 64724.91, 20200502.0, 'CA10', 2960632529.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 4405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930647089.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 15840.89, 20200314.0, 'NAH4', 1930647089.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200133150, 'KROG foundation', 2020.0, 1930679365.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 34756.5, 20200320.0, 'NAA8', 1930679365.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 4407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO corporation', 2020.0, 1930642785.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 7555.79, 20200312.0, 'NAA8', 1930642785.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930853086.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 71834.54, 20200505.0, 'NAH4', 1930853086.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 4409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA us', 2020.0, 1930856614.0, '2020-05-04', 20200504, 20200504, '2020-05-24', 'USD', 'RV', 1.0, 1792.94, 20200501.0, 'NAM4', 1930856614.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 4410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930838056.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 6110.04, 20200501.0, 'NAH4', 1930838056.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 4411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO trust', 2020.0, 2960627169.0, '2020-04-13', 20200413, 20200413, '2020-04-26', 'CAD', 'RV', 1.0, 47205.65, 20200416.0, 'CA10', 2960627169.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 4412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930863004.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 45403.75, 20200508.0, 'NAH4', 1930863004.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 4413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO co', 2020.0, 1930592505.0, '2020-03-02', 20200302, 20200302, '2020-04-01', 'USD', 'RV', 1.0, 93.36, 20200302.0, 'NAD5', 1930592505.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU us', 2020.0, 1930777893.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 130537.34, 20200412.0, 'NAA8', 1930777893.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corp', 2020.0, 1930684550.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 6174.19, 20200325.0, 'NAA8', 1930684550.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE co', 2020.0, 1930822033.0, '2020-04-29', 20200423, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 3615.19, 20200429.0, 'NAA8', 1930822033.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH trust', 2020.0, 1930831644.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 114190.03, 20200428.0, 'NAA8', 1930831644.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930756597.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 23203.31, 20200407.0, 'NAA8', 1930756597.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799538, 'UNITE associates', 2020.0, 1930622092.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 82590.99, 20200308.0, 'NAA8', 1930622092.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 4420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930718508.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 8949.7, 20200330.0, 'NAH4', 1930718508.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930809242.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 15004.9, 20200422.0, 'NAA8', 1930809242.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930738374.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 1259.34, 20200403.0, 'NAH4', 1930738374.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930708504.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 19446.82, 20200327.0, 'NAH4', 1930708504.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930583739.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 19753.39, 20200229.0, 'NAA8', 1930583739.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 4425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930748881.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 7057.67, 20200405.0, 'NAH4', 1930748881.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH systems', 2020.0, 1930691798.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 101907.51, 20200324.0, 'NAA8', 1930691798.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930715506.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 2568.78, 20200330.0, 'NAH4', 1930715506.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC systems', 2020.0, 1930716058.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 39933.58, 20200327.0, 'NAA8', 1930716058.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930780666.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 28341.3, 20200413.0, 'NAA8', 1930780666.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930585277.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 259.5, 20200303.0, 'NAAX', 1930585277.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200501669, 'WAL MA corp', 2020.0, 1990571427.0, '2020-03-26', 20200324, 20200326, '2020-04-30', 'USD', 'RV', 1.0, 40354.22, 20200326.0, 'NAG2', 1990571427.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 4432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930833806.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 32410.04, 20200429.0, 'NAH4', 1930833806.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 4433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M llc', 2020.0, 2960628344.0, '2020-04-17', 20200417, 20200417, '2020-04-27', 'CAD', 'RV', 1.0, 11729.47, 20200417.0, 'CA10', 2960628344.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 4434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200382900, 'J & J associates', 2020.0, 1930658244.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 97696.43, 20200317.0, 'NAA8', 1930658244.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930610072.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 356.39, 20200306.0, 'NAH4', 1930610072.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960618013.0, '2020-03-02', 20200302, 20200302, '2020-03-12', 'CAD', 'RV', 1.0, 18470.42, 20200302.0, 'CA10', 2960618013.0, 1, '2020-03-17', '0-15 days' ); /* INSERT QUERY NO: 4437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930862703.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 13614.7, 20200506.0, 'NAH4', 1930862703.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 4438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930778447.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 65244.52, 20200413.0, 'NAH4', 1930778447.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930738171.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 12176.17, 20200404.0, 'NAH4', 1930738171.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC associates', 2020.0, 1930599544.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 329.52, 20200301.0, 'NAM4', 1930599544.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corp', 2020.0, 1930606161.0, '2020-03-05', 20200305, 20200305, '2020-03-11', 'USD', 'RV', 1.0, 16275.12, 20200301.0, 'NAM2', 1930606161.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 4442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL systems', 2020.0, 1930653857.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 32255.66, 20200317.0, 'NAA8', 1930653857.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA ', 2020.0, 1930581759.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 21604.9, 20200228.0, 'NAA8', 1930581759.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 4444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930848877.0, '2020-05-07', 20200502, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 22313.54, 20200507.0, 'NAH4', 1930848877.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930594629.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 429.51, 20200305.0, 'NAH4', 1930594629.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930749681.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 6067.69, 20200406.0, 'NAH4', 1930749681.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930706810.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 1898.9, 20200326.0, 'NAH4', 1930706810.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930717124.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 8450.11, 20200330.0, 'NAH4', 1930717124.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930837718.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 42790.5, 20200430.0, 'NAH4', 1930837718.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 4450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930566246.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 54165.47, 20200227.0, 'NAH4', 1930566246.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 4451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC us', 2020.0, 1930753666.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 960.42, 20200408.0, 'NAA8', 1930753666.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930828766.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 1778.29, 20200426.0, 'NAA8', 1930828766.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & ', 2020.0, 1930756845.0, '2020-04-06', 20200407, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 13704.78, 20200406.0, 'NAA8', 1930756845.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR co', 2020.0, 1930815428.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 130046.46, 20200424.0, 'NAA8', 1930815428.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930870245.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 9041.02, 20200507.0, 'NAH4', 1930870245.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER in', 2020.0, 1930787777.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 40961.14, 20200415.0, 'NAA8', 1930787777.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930672878.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 77734.36, 20200319.0, 'NAA8', 1930672878.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST co', 2020.0, 1930862103.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 97416.79, 20200507.0, 'NAAX', 1930862103.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930794030.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 8928.0, 20200417.0, 'NAH4', 1930794030.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930759304.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 49225.78, 20200408.0, 'NAH4', 1930759304.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC corporation', 2020.0, 2960621198.0, '2020-03-19', 20200319, 20200319, '2020-03-30', 'CAD', 'RV', 1.0, 19454.5, 20200320.0, 'CA10', 2960621198.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 4462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930672475.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 225.93, 20200321.0, 'NAH4', 1930672475.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930788470.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 140819.4, 20200416.0, 'NAA8', 1930788470.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200722369, 'PERFOR corp', 2020.0, 1930593240.0, '2020-03-16', 20200302, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21297.06, 20200316.0, 'NAA8', 1930593240.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 4465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930853518.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 7138.24, 20200505.0, 'NAH4', 1930853518.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930718824.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 5344.52, 20200330.0, 'NAH4', 1930718824.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR llc', 2020.0, 1930687262.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 134272.63, 20200324.0, 'NAA8', 1930687262.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930674562.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 143659.2, 20200321.0, 'NAA8', 1930674562.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930623736.0, '2020-03-09', 20200309, 20200309, '2020-04-10', 'USD', 'RV', 1.0, 14937.33, 20200309.0, 'NA32', 1930623736.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930763877.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 13655.63, 20200408.0, 'NAH4', 1930763877.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 4471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930730650.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 15122.36, 20200404.0, 'NAH4', 1930730650.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL co', 2020.0, 1930797095.0, '2020-04-23', 20200417, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 7561.08, 20200423.0, 'NAA8', 1930797095.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752393, 'S AB corporation', 2020.0, 1930833870.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 154.98, 20200428.0, 'NAA8', 1930833870.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE corp', 2020.0, 2960630656.0, '2020-04-27', 20200427, 20200427, '2020-05-09', 'CAD', 'RV', 1.0, 145608.96, 20200429.0, 'CA10', 2960630656.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 4475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR trust', 2020.0, 1930807986.0, '2020-04-21', 20200421, 20200421, '2020-05-23', 'USD', 'RV', 1.0, 8915.76, 20200421.0, 'NA32', 1930807986.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930830686.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 107.96, 20200428.0, 'NAA8', 1930830686.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F co', 2020.0, 1930844767.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 1173.06, 20200430.0, 'NAA8', 1930844767.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 4478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752393, 'S AB corporation', 2020.0, 1930630210.0, '2020-03-16', 20200310, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 10285.92, 20200316.0, 'NAA8', 1930630210.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN corporation', 2020.0, 1930784042.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 57829.23, 20200414.0, 'NAA8', 1930784042.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M in', 2020.0, 2960617733.0, '2020-02-28', 20200228, 20200228, '2020-03-10', 'CAD', 'RV', 1.0, 66760.47, 20200229.0, 'CA10', 2960617733.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 4481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930709053.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 14772.55, 20200331.0, 'NAAX', 1930709053.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930652292.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 61424.96, 20200314.0, 'NAA8', 1930652292.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930729821.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 11647.28, 20200402.0, 'NAH4', 1930729821.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200719839, 'ASSOCI llc', 2020.0, 1930749108.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 70532.68, 20200405.0, 'NAA8', 1930749108.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930851607.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 119474.4, 20200503.0, 'NAC6', 1930851607.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 4486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930838429.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 5571.4, 20200430.0, 'NAH4', 1930838429.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 4487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930592998.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 65257.12, 20200304.0, 'NAAX', 1930592998.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930598436.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 14713.22, 20200306.0, 'NAH4', 1930598436.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA ', 2020.0, 1930822071.0, '2020-04-24', 20200424, 20200424, '2020-04-26', 'USD', 'RV', 1.0, 17300.27, 20200416.0, 'NAM2', 1930822071.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930848134.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 661.11, 20200502.0, 'NAH4', 1930848134.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930733060.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 42569.36, 20200404.0, 'NAH4', 1930733060.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930581358.0, '2020-03-04', 20200229, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 37984.55, 20200304.0, 'NAA8', 1930581358.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792293, 'UNIFIE associates', 2020.0, 1930832214.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 62680.28, 20200429.0, 'NAA8', 1930832214.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100028299, 'PT K co', 2020.0, 1930759471.0, '2020-04-07', 20200407, 20200407, '2020-04-07', 'USD', 'RV', 1.0, 86120.0, 20200407.0, 'NAB1', 1930759471.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930705034.0, '2020-03-26', 20200326, 20200326, '2020-05-30', 'USD', 'RV', 1.0, 17472.0, 20200326.0, 'NAGD', 1930705034.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930740876.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 27793.62, 20200404.0, 'NAH4', 1930740876.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR co', 2020.0, 1930809561.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 5594.38, 20200421.0, 'NAA8', 1930809561.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930624898.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 71283.73, 20200310.0, 'NAA8', 1930624898.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE llc', 2020.0, 1930703477.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 7768.22, 20200401.0, 'NAA8', 1930703477.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930685330.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 15367.37, 20200323.0, 'NAA8', 1930685330.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK us', 2020.0, 1930610848.0, '2020-03-05', 20200306, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 66231.13, 20200305.0, 'NAA8', 1930610848.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU llc', 2020.0, 1930623053.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 77135.88, 20200309.0, 'NAC6', 1930623053.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930847093.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 51164.66, 20200504.0, 'NAAX', 1930847093.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930571228.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 126371.25, 20200227.0, 'NAA8', 1930571228.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 4505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU corp', 2020.0, 1930671432.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 56423.97, 20200318.0, 'NAA8', 1930671432.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930665185.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 72255.14, 20200321.0, 'NAC6', 1930665185.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960630787.0, '2020-05-02', 20200502, 20200502, '2020-05-16', 'CAD', 'RV', 1.0, 218592.46, 20200506.0, 'CA10', 2960630787.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 4508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corporation', 2020.0, 1930788214.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 86170.8, 20200416.0, 'NAA8', 1930788214.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930654600.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21894.58, 20200316.0, 'NAA8', 1930654600.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930782309.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 10510.02, 20200414.0, 'NAH4', 1930782309.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M systems', 2020.0, 1930789592.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 105567.15, 20200417.0, 'NAA8', 1930789592.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200724999, 'GILSTE corp', 2020.0, 1930802874.0, '2020-04-20', 20200420, 20200420, '2020-04-30', 'USD', 'RV', 1.0, 44208.18, 20200420.0, 'NA10', 1930802874.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD in', 2020.0, 1930592421.0, '2020-03-02', 20200302, 20200302, '2020-03-22', 'USD', 'RV', 1.0, 1401.65, 20200302.0, 'NAD1', 1930592421.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930780517.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 67847.16, 20200415.0, 'NAH4', 1930780517.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG ', 2020.0, 1930843430.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 21411.91, 20200502.0, 'NAA8', 1930843430.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 4516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930707456.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 708.32, 20200327.0, 'NAA8', 1930707456.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930885933.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 7850.87, 20200511.0, 'NAH4', 1930885933.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 4518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930725829.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 85975.89, 20200401.0, 'NAA8', 1930725829.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 4519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100044052, 'FRISC co', 2020.0, 1930702233.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 38982.6, 20200326.0, 'NAA8', 1930702233.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930743920.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 56118.72, 20200403.0, 'NAA8', 1930743920.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 4521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930659639.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 11445.16, 20200317.0, 'NAA8', 1930659639.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960626004.0, '2020-03-31', 20200331, 20200331, '2020-04-12', 'CAD', 'RV', 1.0, 73095.72, 20200402.0, 'CA10', 2960626004.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 4523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F ', 2020.0, 1930618741.0, '2020-03-07', 20200307, 20200307, '2020-03-07', 'USD', 'RV', 1.0, 9691.2, 20200307.0, 'NAX2', 1930618741.0, 1, '2020-03-13', '0-15 days' ); /* INSERT QUERY NO: 4524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT co', 2020.0, 1930648032.0, '2020-03-15', 20200313, 20200315, '2020-04-19', 'USD', 'RV', 1.0, 86837.76, 20200315.0, 'NAG2', 1930648032.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960631114.0, '2020-04-27', 20200427, 20200427, '2020-05-08', 'CAD', 'RV', 1.0, 96004.06, 20200428.0, 'CA10', 2960631114.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 4526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO systems', 2020.0, 2960617498.0, '2020-03-04', 20200304, 20200304, '2020-03-15', 'CAD', 'RV', 1.0, 128044.56, 20200305.0, 'CA10', 2960617498.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 4527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930581252.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 49923.42, 20200229.0, 'NAA8', 1930581252.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 4528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930853374.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 35685.72, 20200505.0, 'NAA8', 1930853374.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930777441.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 2326.08, 20200412.0, 'NAH4', 1930777441.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS ', 2020.0, 1930753215.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 34499.26, 20200408.0, 'NAA8', 1930753215.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930823421.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 9628.61, 20200425.0, 'NAA8', 1930823421.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930855696.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 14641.37, 20200505.0, 'NAH4', 1930855696.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930570746.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 8793.09, 20200227.0, 'NAAX', 1930570746.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 4534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930643032.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 21554.96, 20200312.0, 'NAH4', 1930643032.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 4535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960618673.0, '2020-03-09', 20200309, 20200309, '2020-03-19', 'CAD', 'RV', 1.0, 258948.37, 20200309.0, 'CA10', 2960618673.0, 1, '2020-03-23', '0-15 days' ); /* INSERT QUERY NO: 4536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR associates', 2020.0, 2960619735.0, '2020-03-11', 20200311, 20200311, '2020-03-22', 'CAD', 'RV', 1.0, 29.64, 20200312.0, 'CA10', 2960619735.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 4537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH associates', 2020.0, 1930720032.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 119871.18, 20200331.0, 'NAC6', 1930720032.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100031686, 'EWT-EU foundation', 2020.0, 1991842252.0, '2020-04-21', 20200417, 20200421, '2020-05-21', 'USD', 'RV', 1.0, 10535.97, 20200421.0, 'NAVE', 1991842252.0, 1, '2020-05-26', '0-15 days' ); /* INSERT QUERY NO: 4539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH foundation', 2020.0, 1930809580.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 51121.62, 20200421.0, 'NAA8', 1930809580.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930855415.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 30611.03, 20200503.0, 'NAA8', 1930855415.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 4541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930655329.0, '2020-03-16', 20200316, 20200316, '2020-04-05', 'USD', 'RV', 1.0, 2566.95, 20200316.0, 'NAD1', 1930655329.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA co', 2020.0, 1930649375.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 12414.28, 20200313.0, 'NAA8', 1930649375.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US ', 2020.0, 1930767617.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 47972.15, 20200409.0, 'NAA8', 1930767617.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930717610.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 15753.74, 20200329.0, 'NAH4', 1930717610.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930850951.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 375.44, 20200503.0, 'NAH4', 1930850951.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930847474.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 15475.52, 20200502.0, 'NAA8', 1930847474.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930593660.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 6398.85, 20200303.0, 'NAA8', 1930593660.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW us', 2020.0, 1930767467.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 23088.65, 20200410.0, 'NAA8', 1930767467.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930610867.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 70335.25, 20200308.0, 'NAH4', 1930610867.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200207008, 'THE associates', 2020.0, 1930626286.0, '2020-03-09', 20200309, 20200309, '2020-03-19', 'USD', 'RV', 1.0, 23569.65, 20200309.0, 'NA10', 1930626286.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 4551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930796656.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 5514.9, 20200417.0, 'NAH4', 1930796656.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930669182.0, '2020-03-25', 20200318, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 33580.18, 20200325.0, 'NAA8', 1930669182.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT trust', 2020.0, 1930747627.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 128174.98, 20200406.0, 'NAA8', 1930747627.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104472, 'MARTIN systems', 2020.0, 2960632656.0, '2020-05-07', 20200507, 20200507, '2020-05-18', 'CAD', 'RV', 1.0, 33287.04, 20200508.0, 'CA10', 2960632656.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 4555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930799814.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 17984.24, 20200420.0, 'NAH4', 1930799814.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 4556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'HEINZ corporation', 2020.0, 1991840201.0, '2020-02-27', 20200227, 20200227, '2020-04-12', 'USD', 'RV', 1.0, 14172.18, 20200227.0, 'NAVF', 1991840201.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 4557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER corporation', 2020.0, 1930705917.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 42382.14, 20200326.0, 'NAA8', 1930705917.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930837643.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 50562.75, 20200429.0, 'NAA8', 1930837643.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 4559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930593189.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 17940.11, 20200303.0, 'NAH4', 1930593189.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930838052.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 11950.66, 20200501.0, 'NAH4', 1930838052.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC associates', 2020.0, 1930675893.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 8935.54, 20200316.0, 'NAM4', 1930675893.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930578687.0, '2020-02-28', 20200227, 20200228, '2020-04-02', 'USD', 'RV', 1.0, 8479.19, 20200228.0, 'NAAW', 1930578687.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W associates', 2020.0, 1930837837.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 23211.03, 20200430.0, 'NAC6', 1930837837.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 4564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930624046.0, '2020-03-06', 20200309, 20200306, '2020-05-10', 'USD', 'RV', 1.0, 2796.9, 20200306.0, 'NAGD', 1930624046.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200437182, 'FOOD associates', 2020.0, 1930635495.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 41163.54, 20200311.0, 'NAA8', 1930635495.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930798329.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 67785.75, 20200417.0, 'NAH4', 1930798329.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930693468.0, '2020-03-24', 20200324, 20200324, '2020-04-13', 'USD', 'RV', 1.0, 10912.36, 20200324.0, 'NAD1', 1930693468.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER ', 2020.0, 1930710496.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 18079.53, 20200328.0, 'NAA8', 1930710496.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN us', 2020.0, 1930764825.0, '2020-04-13', 20200408, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 10545.42, 20200413.0, 'NAA8', 1930764825.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 4570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930682113.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 34274.79, 20200321.0, 'NAA8', 1930682113.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930664910.0, '2020-03-18', 20200317, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 9948.79, 20200318.0, 'NAGD', 1930664910.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 4572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA foundation', 2020.0, 1930605748.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 15367.37, 20200307.0, 'NAA8', 1930605748.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK ', 2020.0, 1930837897.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 89328.53, 20200429.0, 'NAA8', 1930837897.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S systems', 2020.0, 1930670514.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 1218.03, 20200319.0, 'NAA8', 1930670514.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930813559.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 36663.61, 20200421.0, 'NAA8', 1930813559.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930576815.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 117607.54, 20200227.0, 'NAA8', 1930576815.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 4577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930687387.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 131210.62, 20200323.0, 'NAA8', 1930687387.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corporation', 2020.0, 2960618385.0, '2020-03-06', 20200306, 20200306, '2020-03-17', 'CAD', 'RV', 1.0, 22982.58, 20200307.0, 'CA10', 2960618385.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 4579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930851844.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 6692.33, 20200502.0, 'NAH4', 1930851844.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100015818, 'MET us', 2020.0, 2960633956.0, '2020-05-11', 20200511, 20200511, '2020-05-22', 'CAD', 'RV', 1.0, 25643.59, 20200512.0, 'CA10', 2960633956.0, 1, '2020-05-26', '0-15 days' ); /* INSERT QUERY NO: 4581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930587100.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 84250.05, 20200303.0, 'NAA8', 1930587100.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 4582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS in', 2020.0, 1930665635.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 152775.54, 20200319.0, 'NAA8', 1930665635.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960618383.0, '2020-03-06', 20200306, 20200306, '2020-03-23', 'CAD', 'RV', 1.0, 34279.2, 20200313.0, 'CA10', 2960618383.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 4584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S corporation', 2020.0, 1930583004.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 49275.37, 20200301.0, 'NAA8', 1930583004.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 4585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930838759.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2482.66, 20200430.0, 'NAA8', 1930838759.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930620126.0, '2020-03-09', 20200307, 20200309, '2020-05-13', 'USD', 'RV', 1.0, 2236.62, 20200309.0, 'NAGD', 1930620126.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930778016.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 4647.69, 20200412.0, 'NAC6', 1930778016.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK co', 2020.0, 1930715288.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 5842.78, 20200327.0, 'NAA8', 1930715288.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930854582.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 1991.84, 20200505.0, 'NAH4', 1930854582.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW us', 2020.0, 1930814055.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 7719.79, 20200422.0, 'NAA8', 1930814055.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930665576.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 9220.68, 20200318.0, 'NAH4', 1930665576.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930686796.0, '2020-03-27', 20200323, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 7527.62, 20200327.0, 'NAA8', 1930686796.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU corporation', 2020.0, 1930763695.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 50382.47, 20200410.0, 'NAA8', 1930763695.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO corp', 2020.0, 1930589537.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 41520.04, 20200303.0, 'NAA8', 1930589537.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST in', 2020.0, 1930870472.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 32481.88, 20200508.0, 'NAAX', 1930870472.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 4596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930805004.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 330.31, 20200421.0, 'NAA8', 1930805004.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930683153.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 31413.2, 20200322.0, 'NAH4', 1930683153.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930715578.0, '2020-03-29', 20200328, 20200329, '2020-06-02', 'USD', 'RV', 1.0, 5295.42, 20200329.0, 'NAGD', 1930715578.0, 1, '2020-05-29', 'early' ); /* INSERT QUERY NO: 4599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930754413.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 79701.45, 20200407.0, 'NAH4', 1930754413.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930855498.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 45382.84, 20200506.0, 'NAH4', 1930855498.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA trust', 2020.0, 1930780371.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 5524.02, 20200413.0, 'NAA8', 1930780371.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930632845.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 53907.91, 20200310.0, 'NAH4', 1930632845.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930655856.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 112253.04, 20200316.0, 'NAA8', 1930655856.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930748941.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 24218.61, 20200404.0, 'NAH4', 1930748941.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930806445.0, '2020-04-21', 20200421, 20200421, '2020-04-26', 'USD', 'RV', 1.0, 12670.55, 20200416.0, 'NAM2', 1930806445.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930598559.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 15924.15, 20200304.0, 'NAA8', 1930598559.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930642668.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 188174.74, 20200314.0, 'NAC6', 1930642668.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 4608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU corporation', 2020.0, 1930617145.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 3311.91, 20200309.0, 'NAA8', 1930617145.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F corp', 2020.0, 1930809574.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 2043.13, 20200421.0, 'NAA8', 1930809574.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH associates', 2020.0, 1930666168.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 134095.09, 20200319.0, 'NAA8', 1930666168.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 4611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930630108.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 998.08, 20200310.0, 'NAA8', 1930630108.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE llc', 2020.0, 1930802320.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 13887.08, 20200420.0, 'NAA8', 1930802320.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 4613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930636962.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 3703.19, 20200311.0, 'NAH4', 1930636962.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 4614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930699334.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 39901.65, 20200325.0, 'NAH4', 1930699334.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930810564.0, '2020-04-22', 20200422, 20200422, '2020-04-26', 'USD', 'RV', 1.0, 11249.58, 20200416.0, 'NAM2', 1930810564.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL foundation', 2020.0, 1930728099.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 20708.42, 20200402.0, 'NAA8', 1930728099.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 4617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930670901.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 750.64, 20200320.0, 'NAAX', 1930670901.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR in', 2020.0, 1930621204.0, '2020-03-09', 20200307, 20200309, '2020-05-13', 'USD', 'RV', 1.0, 76012.34, 20200309.0, 'NAGD', 1930621204.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930797813.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 13037.68, 20200417.0, 'NAH4', 1930797813.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO systems', 2020.0, 2960631163.0, '2020-04-30', 20200430, 20200430, '2020-05-10', 'CAD', 'RV', 1.0, 69698.02, 20200430.0, 'CA10', 2960631163.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 4621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR associates', 2020.0, 1930622149.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 83401.91, 20200309.0, 'NAA8', 1930622149.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 4622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930654331.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 19217.84, 20200316.0, 'NAH4', 1930654331.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 4623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA corp', 2020.0, 1930594344.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 490.11, 20200304.0, 'NAA8', 1930594344.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930816288.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 54203.97, 20200422.0, 'NAA8', 1930816288.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT foundation', 2020.0, 1930751671.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 148801.61, 20200405.0, 'NAA8', 1930751671.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 4626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930654777.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 45970.09, 20200317.0, 'NAH4', 1930654777.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930885760.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 24698.84, 20200511.0, 'NAH4', 1930885760.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER in', 2020.0, 1930705496.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 92140.82, 20200326.0, 'NAA8', 1930705496.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA systems', 2020.0, 1930688066.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 4672.77, 20200323.0, 'NAA8', 1930688066.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE ', 2020.0, 2960630937.0, '2020-04-27', 20200427, 20200427, '2020-05-15', 'CAD', 'RV', 1.0, 38737.78, 20200505.0, 'CA10', 2960630937.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 4631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930622896.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 89346.09, 20200310.0, 'NAH4', 1930622896.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200133150, 'KROG foundation', 2020.0, 1930679365.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 34756.5, 20200320.0, 'NAA8', 1930679365.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 4633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930623815.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 50480.47, 20200310.0, 'NAA8', 1930623815.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S co', 2020.0, 1930793055.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 1739.41, 20200415.0, 'NAA8', 1930793055.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721222, 'GO foundation', 2020.0, 1930821796.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 77971.51, 20200424.0, 'NAA8', 1930821796.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC us', 2020.0, 1930599351.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 561.96, 20200301.0, 'NAM4', 1930599351.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930620306.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 16160.75, 20200308.0, 'NAH4', 1930620306.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960633900.0, '2020-05-08', 20200508, 20200508, '2020-05-18', 'CAD', 'RV', 1.0, 56448.0, 20200508.0, 'CA10', 2960633900.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 4639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930650658.0, '2020-03-15', 20200313, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 17256.8, 20200315.0, 'NAH4', 1930650658.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930690199.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 12855.13, 20200324.0, 'NAH4', 1930690199.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930854778.0, '2020-05-06', 20200503, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 20319.08, 20200506.0, 'NAH4', 1930854778.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 4642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930847915.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 54146.87, 20200502.0, 'NAH4', 1930847915.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT corp', 2020.0, 1930748705.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 57198.15, 20200405.0, 'NAA8', 1930748705.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 4644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930659570.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 17788.49, 20200317.0, 'NAA8', 1930659570.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930620921.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 10094.93, 20200309.0, 'NAAX', 1930620921.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930700547.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 51347.19, 20200325.0, 'NAH4', 1930700547.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739534, 'OK systems', 2020.0, 1930738007.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 70289.35, 20200402.0, 'NAA8', 1930738007.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930700488.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 51172.63, 20200325.0, 'NAA8', 1930700488.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930723413.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 53096.4, 20200330.0, 'NAA8', 1930723413.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930746163.0, '2020-04-04', 20200404, 20200404, '2020-04-11', 'USD', 'RV', 1.0, 5841.19, 20200401.0, 'NAM2', 1930746163.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F corporation', 2020.0, 2960625423.0, '2020-04-01', 20200401, 20200401, '2020-04-13', 'CAD', 'RV', 1.0, 7045.6, 20200403.0, 'CA10', 2960625423.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 4652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930622659.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 37555.85, 20200308.0, 'NAH4', 1930622659.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930610884.0, '2020-03-07', 20200306, 20200307, '2020-05-11', 'USD', 'RV', 1.0, 2973.0, 20200307.0, 'NAGD', 1930610884.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930683085.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 92887.22, 20200321.0, 'NAA8', 1930683085.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT in', 2020.0, 1930594370.0, '2020-03-03', 20200303, 20200303, '2020-05-07', 'USD', 'RV', 1.0, 13512.77, 20200303.0, 'NAGD', 1930594370.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 4656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE co', 2020.0, 2960630163.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'CAD', 'RV', 1.0, 23111.76, 20200429.0, 'CA10', 2960630163.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 4657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA associates', 2020.0, 1930651415.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 84709.28, 20200314.0, 'NAA8', 1930651415.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930573744.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 14796.78, 20200228.0, 'NAH4', 1930573744.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 4659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930782145.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 8832.73, 20200414.0, 'NAH4', 1930782145.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930783818.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 1464.42, 20200414.0, 'NAA8', 1930783818.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930821650.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 26082.19, 20200424.0, 'NAH4', 1930821650.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930804234.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 1614.26, 20200421.0, 'NAAX', 1930804234.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930749070.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 51257.78, 20200406.0, 'NAH4', 1930749070.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930690058.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 2019.69, 20200325.0, 'NAH4', 1930690058.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930839679.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 56923.47, 20200502.0, 'NAH4', 1930839679.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 4666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corp', 2020.0, 1930831732.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 100011.71, 20200428.0, 'NAA8', 1930831732.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930716681.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 1991.84, 20200329.0, 'NAH4', 1930716681.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930850824.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 29097.37, 20200502.0, 'NAH4', 1930850824.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930621866.0, '2020-03-10', 20200307, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 9598.99, 20200310.0, 'NAA8', 1930621866.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE associates', 2020.0, 1930710227.0, '2020-04-01', 20200328, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 5421.9, 20200401.0, 'NAA8', 1930710227.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 4671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO in', 2020.0, 2960625189.0, '2020-04-04', 20200404, 20200404, '2020-04-16', 'CAD', 'RV', 1.0, 153012.36, 20200406.0, 'CA10', 2960625189.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 4672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930800436.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 6532.6, 20200418.0, 'NAH4', 1930800436.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930785357.0, '2020-04-16', 20200414, 20200416, '2020-06-20', 'USD', 'RV', 1.0, 18631.2, 20200416.0, 'NAGD', 1930785357.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 4674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930653613.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 106.67, 20200315.0, 'NAH4', 1930653613.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT trust', 2020.0, 1930668592.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 62596.7, 20200319.0, 'NAA8', 1930668592.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930580953.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 57629.43, 20200228.0, 'NAH4', 1930580953.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 4677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930767881.0, '2020-04-08', 20200409, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 2796.9, 20200408.0, 'NAGD', 1930767881.0, 1, '2020-06-10', 'early' ); /* INSERT QUERY NO: 4678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930641538.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 8755.2, 20200312.0, 'NAH4', 1930641538.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 4679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100050962, 'HIGHLAN co', 2020.0, 1930650621.0, '2020-03-13', 20200313, 20200313, '2020-04-12', 'USD', 'RV', 1.0, 6256.0, 20200313.0, 'NAD5', 1930650621.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER systems', 2020.0, 2960625680.0, '2020-04-02', 20200402, 20200402, '2020-04-20', 'CAD', 'RV', 1.0, 106453.65, 20200410.0, 'CA10', 2960625680.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 4681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930783436.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 35031.22, 20200415.0, 'NAAX', 1930783436.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG ', 2020.0, 1930854371.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 165726.47, 20200503.0, 'NAA8', 1930854371.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA trust', 2020.0, 1930693329.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 6290.78, 20200325.0, 'NAA8', 1930693329.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930687621.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 22972.81, 20200325.0, 'NAC6', 1930687621.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930814204.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 54905.8, 20200422.0, 'NAAX', 1930814204.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU in', 2020.0, 1930827704.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 49421.29, 20200427.0, 'NAC6', 1930827704.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER ', 2020.0, 1930822225.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 57439.88, 20200424.0, 'NAA8', 1930822225.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US ', 2020.0, 1930764420.0, '2020-04-16', 20200408, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 7887.33, 20200416.0, 'NAA8', 1930764420.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA co', 2020.0, 1930629486.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 935.71, 20200310.0, 'NAA8', 1930629486.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930832973.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 39389.45, 20200428.0, 'NAH4', 1930832973.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR corp', 2020.0, 2960623207.0, '2020-03-21', 20200321, 20200321, '2020-04-01', 'CAD', 'RV', 1.0, 47.74, 20200322.0, 'CA10', 2960623207.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 4692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930653775.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 3403.8, 20200317.0, 'NAH4', 1930653775.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930774849.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 21084.68, 20200410.0, 'NAA8', 1930774849.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC ', 2020.0, 2960621454.0, '2020-03-17', 20200317, 20200317, '2020-03-31', 'CAD', 'RV', 1.0, 18547.99, 20200321.0, 'CA10', 2960621454.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 4695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN us', 2020.0, 1930803635.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 37682.12, 20200421.0, 'NAA8', 1930803635.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE associates', 2020.0, 1930810817.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 3183.12, 20200422.0, 'NAA8', 1930810817.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE in', 2020.0, 1930642812.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 79258.08, 20200313.0, 'NAA8', 1930642812.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783609, 'PROFIC corp', 2020.0, 1930638061.0, '2020-03-17', 20200311, 20200317, '2020-04-18', 'USD', 'RV', 1.0, 16101.4, 20200317.0, 'NA32', 1930638061.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA associates', 2020.0, 1930876143.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 16391.69, 20200508.0, 'NAA8', 1930876143.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200399141, 'HEARTHSI associates', 2020.0, 1930623227.0, '2020-03-11', 20200309, 20200311, '2020-05-10', 'USD', 'RV', 1.0, 52056.1, 20200311.0, 'NAVQ', 1930623227.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 4701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO associates', 2020.0, 1930725155.0, '2020-04-02', 20200331, 20200402, '2020-04-22', 'USD', 'RV', 1.0, 4027.51, 20200402.0, 'NAD1', 1930725155.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930779454.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 43937.23, 20200413.0, 'NAH4', 1930779454.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930635457.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 19874.44, 20200312.0, 'NAH4', 1930635457.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 4704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930582433.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 75042.63, 20200228.0, 'NAA8', 1930582433.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 4705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930709636.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 661.11, 20200328.0, 'NAH4', 1930709636.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930719678.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 41232.44, 20200331.0, 'NAA8', 1930719678.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930738694.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 16620.01, 20200405.0, 'NAH4', 1930738694.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC trust', 2020.0, 1930861753.0, '2020-05-06', 20200506, 20200506, '2020-05-24', 'USD', 'RV', 1.0, 406.26, 20200501.0, 'NAM4', 1930861753.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 4709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930753897.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 87296.71, 20200406.0, 'NAU5', 1930753897.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930737885.0, '2020-04-04', 20200403, 20200404, '2020-06-08', 'USD', 'RV', 1.0, 50146.62, 20200404.0, 'NAGD', 1930737885.0, 1, '2020-06-05', 'early' ); /* INSERT QUERY NO: 4711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL in', 2020.0, 1930787552.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 83052.79, 20200414.0, 'NAA8', 1930787552.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930717638.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 42561.79, 20200330.0, 'NAA8', 1930717638.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200765011, 'MAINES ', 2020.0, 1930859882.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 22385.45, 20200505.0, 'NAA8', 1930859882.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930586263.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 32144.84, 20200302.0, 'NAH4', 1930586263.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO us', 2020.0, 2960619354.0, '2020-03-11', 20200311, 20200311, '2020-03-21', 'CAD', 'RV', 1.0, 43134.95, 20200311.0, 'CA10', 2960619354.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 4716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S llc', 2020.0, 1930716459.0, '2020-03-18', 20200328, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 1419.08, 20200318.0, 'NAA8', 1930716459.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH llc', 2020.0, 1930581472.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 77614.82, 20200228.0, 'NAA8', 1930581472.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 4718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK systems', 2020.0, 1930601199.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 21198.57, 20200304.0, 'NAA8', 1930601199.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR in', 2020.0, 1930610087.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 136023.31, 20200307.0, 'NAA8', 1930610087.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST foundation', 2020.0, 1930670243.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 14204.38, 20200319.0, 'NAAX', 1930670243.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET llc', 2020.0, 1930627911.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 13827.13, 20200310.0, 'NAA8', 1930627911.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105508, 'DOLLARA llc', 2020.0, 2960633938.0, '2020-05-10', 20200510, 20200510, '2020-05-23', 'CAD', 'RV', 1.0, 72406.08, 20200513.0, 'CA10', 2960633938.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 4723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS corp', 2020.0, 1930600199.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 63909.06, 20200304.0, 'NAA8', 1930600199.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930616859.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 16256.91, 20200306.0, 'NAU5', 1930616859.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930681834.0, '2020-03-21', 20200321, 20200321, '2020-04-08', 'USD', 'RV', 1.0, 835.88, 20200316.0, 'NAM4', 1930681834.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR foundation', 2020.0, 1930893127.0, '2020-05-12', 20200512, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 3270.04, 20200512.0, 'NAH4', 1930893127.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 4727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB systems', 2020.0, 2960620003.0, '2020-03-10', 20200310, 20200310, '2020-03-28', 'CAD', 'RV', 1.0, 4937.14, 20200318.0, 'CA10', 2960620003.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 4728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930796653.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 50887.57, 20200417.0, 'NAH4', 1930796653.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930823086.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 3866.44, 20200425.0, 'NAH4', 1930823086.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC ', 2020.0, 1930810854.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 4651.95, 20200416.0, 'NAM4', 1930810854.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 4731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930827219.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 2352.97, 20200427.0, 'NAH4', 1930827219.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719300, 'SYSTEMS co', 2020.0, 1930809941.0, '2020-04-24', 20200421, 20200424, '2020-05-14', 'USD', 'RV', 1.0, 18432.0, 20200424.0, 'NAD1', 1930809941.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS in', 2020.0, 1930603192.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 5093.56, 20200304.0, 'NAA8', 1930603192.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930653057.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 35388.35, 20200315.0, 'NAH4', 1930653057.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930826732.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 38356.41, 20200425.0, 'NAA8', 1930826732.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO systems', 2020.0, 1930580717.0, '2020-02-28', 20200227, 20200228, '2020-03-09', 'USD', 'RV', 1.0, 18145.19, 20200228.0, 'NA10', 1930580717.0, 1, '2020-02-29', 'early' ); /* INSERT QUERY NO: 4737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE us', 2020.0, 1930577335.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 13715.1, 20200228.0, 'NAA8', 1930577335.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 4738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200152991, 'JET llc', 2020.0, 1930715075.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 20110.39, 20200328.0, 'NAA8', 1930715075.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930780178.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 5579.62, 20200413.0, 'NAA8', 1930780178.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930739319.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 14049.57, 20200403.0, 'NAH4', 1930739319.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930723189.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 1329.23, 20200331.0, 'NAH4', 1930723189.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO in', 2020.0, 2960620927.0, '2020-03-15', 20200315, 20200315, '2020-03-28', 'CAD', 'RV', 1.0, 268576.27, 20200318.0, 'CA10', 2960620927.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 4743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS associates', 2020.0, 1930833801.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 5917.29, 20200428.0, 'NAA8', 1930833801.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930829591.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 10947.42, 20200429.0, 'NAA8', 1930829591.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 4745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930875179.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 9680.43, 20200507.0, 'NAH4', 1930875179.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR trust', 2020.0, 1930767245.0, '2020-04-13', 20200408, 20200413, '2020-05-03', 'USD', 'RV', 1.0, 1905.12, 20200413.0, 'NAD1', 1930767245.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S foundation', 2020.0, 1930859120.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 26813.16, 20200507.0, 'NAA8', 1930859120.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 4748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE llc', 2020.0, 1930655117.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 85216.7, 20200317.0, 'NAA8', 1930655117.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106271, 'LONGO us', 2020.0, 2960626005.0, '2020-03-31', 20200331, 20200331, '2020-04-11', 'CAD', 'RV', 1.0, 18066.19, 20200401.0, 'CA10', 2960626005.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 4750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR corp', 2020.0, 1930759499.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 24721.94, 20200407.0, 'NAA8', 1930759499.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH associates', 2020.0, 1930607503.0, '2020-03-10', 20200305, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 16070.4, 20200310.0, 'NAA8', 1930607503.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930827292.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 30977.62, 20200427.0, 'NAA8', 1930827292.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930689314.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 9990.37, 20200324.0, 'NAH4', 1930689314.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930722948.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 3270.04, 20200401.0, 'NAH4', 1930722948.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 4755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930848666.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 18206.69, 20200503.0, 'NAH4', 1930848666.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200071186, 'FATH associates', 2020.0, 1930781674.0, '2020-04-10', 20200414, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 51511.68, 20200410.0, 'NAA8', 1930781674.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930604906.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 50899.85, 20200305.0, 'NAH4', 1930604906.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 4758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER systems', 2020.0, 1930684404.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 65150.3, 20200322.0, 'NAA8', 1930684404.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL corp', 2020.0, 1930823343.0, '2020-04-29', 20200424, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 24847.78, 20200429.0, 'NAA8', 1930823343.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 4760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA ', 2020.0, 1930646499.0, '2020-03-14', 20200313, 20200314, '2020-05-18', 'USD', 'RV', 1.0, 6382.8, 20200314.0, 'NAGD', 1930646499.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930881005.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 661.11, 20200509.0, 'NAH4', 1930881005.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 4762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930798664.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 1322.22, 20200418.0, 'NAH4', 1930798664.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA co', 2020.0, 1930877839.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 1627.18, 20200501.0, 'NAM4', 1930877839.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200708445, 'KALE systems', 2020.0, 1930880239.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 19707.34, 20200508.0, 'NAA8', 1930880239.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 4765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE corp', 2020.0, 1930651684.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 17644.01, 20200316.0, 'NAA8', 1930651684.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930740141.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 36801.33, 20200405.0, 'NAH4', 1930740141.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0, 'KRAFT us', 2020.0, 2960619186.0, '2020-03-11', 20200312, 20200311, '2020-04-17', 'CAD', 'RV', 1.0, 21273.84, 20200313.0, 'NAG2', 2960619186.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 4768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930717124.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 8450.11, 20200330.0, 'NAH4', 1930717124.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943275, 'US in', 2020.0, 1930803063.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 13838.96, 20200420.0, 'NAA8', 1930803063.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930814064.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 82046.92, 20200422.0, 'NAC6', 1930814064.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726025, 'MARTI corporation', 2020.0, 1930877859.0, '2020-05-07', 20200508, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 35114.82, 20200507.0, 'NAA8', 1930877859.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 4772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930826208.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 28856.15, 20200425.0, 'NAH4', 1930826208.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ us', 2020.0, 1930752135.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 99285.23, 20200406.0, 'NAA8', 1930752135.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930818620.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 20070.68, 20200423.0, 'NAH4', 1930818620.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 4775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F associates', 2020.0, 1930646707.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 34719.37, 20200312.0, 'NAA8', 1930646707.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930651347.0, '2020-03-19', 20200314, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 813.17, 20200319.0, 'NAH4', 1930651347.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK in', 2020.0, 1930801306.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 40916.98, 20200418.0, 'NAA8', 1930801306.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200657619, 'SOTO us', 2020.0, 1930814573.0, '2020-04-22', 20200422, 20200422, '2020-05-24', 'USD', 'RV', 1.0, 20589.0, 20200422.0, 'NA32', 1930814573.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 4779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE corp', 2020.0, 2960632828.0, '2020-05-04', 20200504, 20200504, '2020-05-15', 'CAD', 'RV', 1.0, 10328.04, 20200505.0, 'CA10', 2960632828.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 4780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930624268.0, '2020-03-09', 20200309, 20200309, '2020-04-10', 'USD', 'RV', 1.0, 50779.13, 20200309.0, 'NA32', 1930624268.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930826995.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 25380.23, 20200426.0, 'NAH4', 1930826995.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960613782.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'CAD', 'RV', 1.0, 84672.0, 20200304.0, 'CA10', 2960613782.0, 1, '2020-03-15', '0-15 days' ); /* INSERT QUERY NO: 4783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA in', 2020.0, 1930636496.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 2105.94, 20200311.0, 'NAA8', 1930636496.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930601253.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 8793.09, 20200305.0, 'NAAX', 1930601253.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930756894.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 5245.15, 20200407.0, 'NAC6', 1930756894.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL ', 2020.0, 1930783869.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 31574.57, 20200415.0, 'NAA8', 1930783869.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930874244.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 12994.76, 20200507.0, 'NAH4', 1930874244.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 4788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE associates', 2020.0, 1930684272.0, '2020-03-24', 20200321, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 14553.38, 20200324.0, 'NAA8', 1930684272.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930814577.0, '2020-04-23', 20200422, 20200423, '2020-05-13', 'USD', 'RV', 1.0, 3188.72, 20200423.0, 'NAD1', 1930814577.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 4790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200625175, 'ALD corp', 2020.0, 1930629969.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 26517.37, 20200310.0, 'NAA8', 1930629969.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST corp', 2020.0, 1930858725.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 20122.77, 20200505.0, 'NAAX', 1930858725.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 4792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU us', 2020.0, 1930686978.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 34324.95, 20200325.0, 'NAA8', 1930686978.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO associates', 2020.0, 1930698868.0, '2020-03-26', 20200325, 20200326, '2020-04-27', 'USD', 'RV', 1.0, 20177.0, 20200326.0, 'NA32', 1930698868.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200735528, 'ASSOCIA llc', 2020.0, 1930803560.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 40507.0, 20200422.0, 'NAA8', 1930803560.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC systems', 2020.0, 1930819351.0, '2020-04-23', 20200423, 20200423, '2020-04-26', 'USD', 'RV', 1.0, 10329.41, 20200416.0, 'NAM2', 1930819351.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930762772.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 7296.97, 20200409.0, 'NAH4', 1930762772.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK systems', 2020.0, 1930809893.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 908.06, 20200421.0, 'NAA8', 1930809893.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930654723.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 2373.96, 20200317.0, 'NAH4', 1930654723.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930717755.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 14245.57, 20200330.0, 'NAH4', 1930717755.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930675922.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 4814.51, 20200321.0, 'NAH4', 1930675922.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930751995.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 11176.22, 20200406.0, 'NAH4', 1930751995.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930749496.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 28626.53, 20200405.0, 'NAH4', 1930749496.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200729290, 'KROGER associates', 2020.0, 1930747894.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 47009.05, 20200405.0, 'NAA8', 1930747894.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER co', 2020.0, 1930793549.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 110111.22, 20200416.0, 'NAA8', 1930793549.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930652718.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 23306.07, 20200316.0, 'NAC6', 1930652718.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930683127.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 73008.7, 20200322.0, 'NAA8', 1930683127.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 4807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR ', 2020.0, 1930802683.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 14103.4, 20200420.0, 'NAA8', 1930802683.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930585224.0, '2020-03-04', 20200301, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 14242.45, 20200304.0, 'NAA8', 1930585224.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930880639.0, '2020-05-10', 20200508, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 15024.67, 20200510.0, 'NAH4', 1930880639.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727272, 'BROOKS co', 2020.0, 1930833812.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 4755.62, 20200428.0, 'NAA8', 1930833812.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930829435.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 661.11, 20200428.0, 'NAH4', 1930829435.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930584769.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 31206.51, 20200229.0, 'NAH4', 1930584769.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH corporation', 2020.0, 1930720997.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 26205.73, 20200330.0, 'NAA8', 1930720997.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960631114.0, '2020-04-27', 20200427, 20200427, '2020-05-08', 'CAD', 'RV', 1.0, 96004.06, 20200428.0, 'CA10', 2960631114.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 4815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930713585.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 16170.98, 20200329.0, 'NAH4', 1930713585.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930802031.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 5979.52, 20200421.0, 'NAH4', 1930802031.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930738581.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 3776.83, 20200403.0, 'NAH4', 1930738581.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930803263.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 1688.1, 20200420.0, 'NAH4', 1930803263.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 4819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960626892.0, '2020-04-12', 20200412, 20200412, '2020-04-22', 'CAD', 'RV', 1.0, 41497.48, 20200412.0, 'CA10', 2960626892.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 4820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200407025, 'ALBERT in', 2020.0, 1930708136.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 64735.21, 20200327.0, 'NAA8', 1930708136.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930598686.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 32259.18, 20200304.0, 'NAA8', 1930598686.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930799175.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 54658.6, 20200419.0, 'NAH4', 1930799175.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930879589.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 471.56, 20200508.0, 'NAH4', 1930879589.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 4824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA corp', 2020.0, 1930594516.0, '2020-03-04', 20200303, 20200304, '2020-04-03', 'USD', 'RV', 1.0, 71136.24, 20200304.0, 'NAD5', 1930594516.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778355, 'US us', 2020.0, 1930708260.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 24521.7, 20200326.0, 'NAA8', 1930708260.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR ', 2020.0, 1930772878.0, '2020-04-15', 20200410, 20200415, '2020-05-17', 'USD', 'RV', 1.0, 9128.52, 20200415.0, 'NA32', 1930772878.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO co', 2020.0, 2960629740.0, '2020-04-22', 20200422, 20200422, '2020-05-02', 'CAD', 'RV', 1.0, 42580.61, 20200422.0, 'CA10', 2960629740.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 4828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930826627.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 26499.58, 20200426.0, 'NAH4', 1930826627.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI corp', 2020.0, 1930812735.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 18978.44, 20200421.0, 'NAA8', 1930812735.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930610075.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 5718.1, 20200306.0, 'NAH4', 1930610075.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corporation', 2020.0, 1930757755.0, '2020-04-07', 20200407, 20200407, '2020-04-11', 'USD', 'RV', 1.0, 426.62, 20200401.0, 'NAM2', 1930757755.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA systems', 2020.0, 1930811810.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 190.28, 20200416.0, 'NAM4', 1930811810.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 4833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200689451, 'PORK corp', 2020.0, 1930627685.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 134351.45, 20200310.0, 'NAA8', 1930627685.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200785971, 'SYSCO llc', 2020.0, 1930783723.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 27011.78, 20200415.0, 'NAA8', 1930783723.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930690092.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 4668.21, 20200325.0, 'NAA8', 1930690092.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW foundation', 2020.0, 1930764197.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 136342.65, 20200408.0, 'NAA8', 1930764197.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104229, 'A & W F associates', 2020.0, 2960633342.0, '2020-05-10', 20200510, 20200510, '2020-05-20', 'CAD', 'RV', 1.0, 5535.54, 20200510.0, 'CA10', 2960633342.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 4838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930827951.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 160916.33, 20200427.0, 'NAC6', 1930827951.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930730359.0, '2020-04-08', 20200401, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 3482.55, 20200408.0, 'NAH4', 1930730359.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 4840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- corp', 2020.0, 2960617942.0, '2020-03-02', 20200302, 20200302, '2020-03-20', 'CAD', 'RV', 1.0, 39904.12, 20200310.0, 'CA10', 2960617942.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 4841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE llc', 2020.0, 1930630388.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 15893.27, 20200310.0, 'NAA8', 1930630388.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930623205.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 12312.26, 20200308.0, 'NAH4', 1930623205.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930788356.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 10286.29, 20200415.0, 'NAA8', 1930788356.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200468954, 'SKID corp', 2020.0, 1930689028.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 5604.2, 20200323.0, 'NAA8', 1930689028.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930814074.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 1322.22, 20200423.0, 'NAH4', 1930814074.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 4846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH systems', 2020.0, 1930724797.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 3925.41, 20200331.0, 'NAC6', 1930724797.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 4847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE us', 2020.0, 1930646955.0, '2020-03-20', 20200313, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 3899.94, 20200320.0, 'NAA8', 1930646955.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 4848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930576194.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 60515.4, 20200228.0, 'NAH4', 1930576194.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 4849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930716536.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 40323.79, 20200328.0, 'NAH4', 1930716536.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775660, 'EB systems', 2020.0, 1930797881.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 903.92, 20200417.0, 'NAA8', 1930797881.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930699409.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 55276.67, 20200326.0, 'NAC6', 1930699409.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO associates', 2020.0, 1930861058.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 1252.09, 20200505.0, 'NAA8', 1930861058.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200515231, 'US ', 2020.0, 1930645659.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 35934.93, 20200314.0, 'NAA8', 1930645659.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930581299.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 6127.18, 20200301.0, 'NAH4', 1930581299.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 4855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930826177.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 14535.12, 20200426.0, 'NAH4', 1930826177.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930757845.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 38560.56, 20200408.0, 'NAH4', 1930757845.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 4857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930748370.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 107067.04, 20200404.0, 'NAH4', 1930748370.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corp', 2020.0, 1930643218.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 35809.68, 20200313.0, 'NAA8', 1930643218.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT us', 2020.0, 1930722964.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 39310.71, 20200330.0, 'NAA8', 1930722964.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI in', 2020.0, 1930766985.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 33143.75, 20200408.0, 'NAA8', 1930766985.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742521, 'GLA in', 2020.0, 1930570834.0, '2020-03-03', 20200302, 20200303, '2020-04-04', 'USD', 'RV', 1.0, 23393.08, 20200303.0, 'NA32', 1930570834.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 4862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960632038.0, '2020-05-04', 20200505, 20200504, '2020-05-18', 'CAD', 'RV', 1.0, 56309.46, 20200508.0, 'CA10', 2960632038.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 4863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930605955.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 44798.35, 20200305.0, 'NAA8', 1930605955.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 4864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S in', 2020.0, 1930758539.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 1802.37, 20200407.0, 'NAA8', 1930758539.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE llc', 2020.0, 1930729164.0, '2020-04-06', 20200401, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 3702.29, 20200406.0, 'NAA8', 1930729164.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200789077, 'US us', 2020.0, 1930765100.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 3008.94, 20200408.0, 'NAA8', 1930765100.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S systems', 2020.0, 1930636929.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 55737.88, 20200312.0, 'NAA8', 1930636929.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA associates', 2020.0, 1930627583.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 4788.17, 20200309.0, 'NAA8', 1930627583.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943275, 'US trust', 2020.0, 1930605197.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 41032.29, 20200305.0, 'NAA8', 1930605197.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930623450.0, '2020-03-10', 20200309, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 21722.78, 20200310.0, 'NAGD', 1930623450.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930729028.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 16155.45, 20200402.0, 'NAH4', 1930729028.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930846835.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 17046.42, 20200502.0, 'NAH4', 1930846835.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 4873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930745676.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 28069.46, 20200404.0, 'NAH4', 1930745676.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC foundation', 2020.0, 1930817489.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 319.8, 20200416.0, 'NAM4', 1930817489.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930880344.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 514.42, 20200510.0, 'NAH4', 1930880344.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 4876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100046487, 'PAPA JOH co', 2020.0, 1991839560.0, '2020-03-12', 20200312, 20200312, '2020-04-06', 'USD', 'RV', 1.0, 16008.2, 20200312.0, 'NA25', 1991839560.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA foundation', 2020.0, 1930870735.0, '2020-05-07', 20200507, 20200507, '2020-05-24', 'USD', 'RV', 1.0, 103.92, 20200501.0, 'NAM4', 1930870735.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 4878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930828515.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 87013.4, 20200427.0, 'NAA8', 1930828515.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 4879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930662055.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 15768.23, 20200318.0, 'NAA8', 1930662055.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930637507.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 17801.53, 20200312.0, 'NAH4', 1930637507.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 4881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930670983.0, '2020-03-24', 20200319, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 12995.62, 20200324.0, 'NAA8', 1930670983.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930767743.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 107674.9, 20200409.0, 'NAU5', 1930767743.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 4883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL ', 2020.0, 1930701018.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 2525.76, 20200326.0, 'NAA8', 1930701018.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930773144.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 2540.21, 20200401.0, 'NAM4', 1930773144.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930620895.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 2835.52, 20200309.0, 'NAH4', 1930620895.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930854067.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 85538.58, 20200504.0, 'NAA8', 1930854067.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 4887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930800454.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 33511.03, 20200419.0, 'NAH4', 1930800454.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200778870, 'C foundation', 2020.0, 1930666059.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 8424.09, 20200317.0, 'NAA8', 1930666059.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 4889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719839, 'ASSOCI llc', 2020.0, 1930835693.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 4036.93, 20200501.0, 'NAA8', 1930835693.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 4890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930687006.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 99954.18, 20200322.0, 'NAA8', 1930687006.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930638136.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 16190.12, 20200313.0, 'NAH4', 1930638136.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA foundation', 2020.0, 1930779061.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 8091.47, 20200412.0, 'NAA8', 1930779061.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S foundation', 2020.0, 1930760180.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 36315.32, 20200409.0, 'NAA8', 1930760180.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200253680, 'SCHWANS us', 2020.0, 1930692788.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 45400.0, 20200324.0, 'NAA8', 1930692788.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930593006.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 68964.07, 20200304.0, 'NAH4', 1930593006.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 4896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930748519.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 3227.43, 20200404.0, 'NAH4', 1930748519.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930620128.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 2373.96, 20200309.0, 'NAH4', 1930620128.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG systems', 2020.0, 1930837430.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 7476.48, 20200428.0, 'NAA8', 1930837430.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930701383.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 3329.79, 20200327.0, 'NAH4', 1930701383.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930751582.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 162682.15, 20200405.0, 'NAA8', 1930751582.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930739715.0, '2020-04-05', 20200403, 20200405, '2020-05-20', 'USD', 'RV', 1.0, 106079.98, 20200405.0, 'NAWP', 1930739715.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 4902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960618810.0, '2020-03-04', 20200304, 20200304, '2020-03-23', 'CAD', 'RV', 1.0, 105876.36, 20200313.0, 'CA10', 2960618810.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 4903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930732046.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 25341.53, 20200402.0, 'NAH4', 1930732046.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960622914.0, '2020-03-20', 20200320, 20200320, '2020-04-06', 'CAD', 'RV', 1.0, 76368.95, 20200327.0, 'CA10', 2960622914.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 4905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA foundation', 2020.0, 1930838472.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 29617.79, 20200501.0, 'NAH4', 1930838472.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 4906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR trust', 2020.0, 1930777887.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 102542.95, 20200411.0, 'NAA8', 1930777887.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 4907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC trust', 2020.0, 2960617619.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'CAD', 'RV', 1.0, 1416.2, 20200304.0, 'CA10', 2960617619.0, 1, '2020-03-15', '0-15 days' ); /* INSERT QUERY NO: 4908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930828713.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 20509.35, 20200427.0, 'NAH4', 1930828713.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M systems', 2020.0, 2960626075.0, '2020-04-08', 20200408, 20200408, '2020-04-20', 'CAD', 'RV', 1.0, 69879.15, 20200410.0, 'CA10', 2960626075.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 4910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930827301.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 107.17, 20200426.0, 'NAA8', 1930827301.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930714810.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 63656.45, 20200329.0, 'NAH4', 1930714810.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930792321.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 285.06, 20200416.0, 'NAA8', 1930792321.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 4913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930624968.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 40765.55, 20200310.0, 'NAH4', 1930624968.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 4914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD llc', 2020.0, 1930785846.0, '2020-04-14', 20200414, 20200414, '2020-05-04', 'USD', 'RV', 1.0, 970.21, 20200414.0, 'NAD1', 1930785846.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930768925.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 69438.77, 20200409.0, 'NAA8', 1930768925.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC ', 2020.0, 1930833620.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 1705.8, 20200507.0, 'NAA8', 1930833620.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 4917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930672300.0, '2020-03-19', 20200319, 20200319, '2020-04-08', 'USD', 'RV', 1.0, 103978.95, 20200319.0, 'NAD1', 1930672300.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 4918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930732849.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 45310.91, 20200402.0, 'NAC6', 1930732849.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 4919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930618773.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 32899.88, 20200308.0, 'NAH4', 1930618773.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI corporation', 2020.0, 1930607441.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 82403.19, 20200306.0, 'NAA8', 1930607441.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930579963.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 1898.9, 20200227.0, 'NAH4', 1930579963.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 4922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930645764.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 24481.35, 20200313.0, 'NAH4', 1930645764.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 4923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930788118.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 75267.47, 20200414.0, 'NAA8', 1930788118.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930624534.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 600.17, 20200310.0, 'NAA8', 1930624534.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930689942.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 2380.66, 20200316.0, 'NAM4', 1930689942.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 4926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR foundation', 2020.0, 1930706395.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 9925.06, 20200330.0, 'NAA8', 1930706395.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799538, 'UNITE us', 2020.0, 1930797477.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 68744.27, 20200417.0, 'NAA8', 1930797477.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 4928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930718291.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 7988.98, 20200330.0, 'NAA8', 1930718291.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721222, 'GO ', 2020.0, 1930830413.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 56265.99, 20200427.0, 'NAA8', 1930830413.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 4930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930777969.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 85618.04, 20200412.0, 'NAC6', 1930777969.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930717544.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 20445.58, 20200330.0, 'NAC6', 1930717544.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140105686, 'SYSC in', 2020.0, 2960630767.0, '2020-05-01', 20200501, 20200501, '2020-05-11', 'CAD', 'RV', 1.0, 278.0, 20200501.0, 'CA10', 2960630767.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 4933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930788500.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 661.0, 20200415.0, 'NAA8', 1930788500.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930828891.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 21021.43, 20200429.0, 'NAC6', 1930828891.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 4935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930652191.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 491.76, 20200315.0, 'NAH4', 1930652191.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930582680.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 3430.51, 20200228.0, 'NAH4', 1930582680.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 4937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960625334.0, '2020-03-30', 20200330, 20200330, '2020-04-17', 'CAD', 'RV', 1.0, 157364.24, 20200407.0, 'CA10', 2960625334.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 4938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930650890.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 1898.2, 20200314.0, 'NAH4', 1930650890.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930708428.0, '2020-03-29', 20200330, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 16063.76, 20200329.0, 'NAH4', 1930708428.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 4940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930829900.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 15239.83, 20200427.0, 'NAA8', 1930829900.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930708640.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 106.67, 20200327.0, 'NAH4', 1930708640.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S in', 2020.0, 1930685169.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 242.02, 20200322.0, 'NAA8', 1930685169.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO ', 2020.0, 1930688595.0, '2020-03-26', 20200323, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 33807.11, 20200326.0, 'NAA8', 1930688595.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930605707.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 39239.65, 20200305.0, 'NAH4', 1930605707.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200678532, 'HARB associates', 2020.0, 1930729714.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 23528.13, 20200331.0, 'NAA8', 1930729714.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST llc', 2020.0, 1930685613.0, '2020-03-25', 20200323, 20200325, '2020-05-29', 'USD', 'RV', 1.0, 1715.7, 20200325.0, 'NAGD', 1930685613.0, 1, '2020-05-27', 'early' ); /* INSERT QUERY NO: 4947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER trust', 2020.0, 1930625382.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 19436.32, 20200310.0, 'NAA8', 1930625382.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 4948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930738144.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 9099.42, 20200403.0, 'NAA8', 1930738144.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 4949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930768251.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 373.72, 20200409.0, 'NAH4', 1930768251.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 4950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930610774.0, '2020-03-07', 20200306, 20200307, '2020-05-11', 'USD', 'RV', 1.0, 6382.8, 20200307.0, 'NAGD', 1930610774.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 4951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S corporation', 2020.0, 1930676022.0, '2020-03-24', 20200320, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 61817.32, 20200324.0, 'NAA8', 1930676022.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930813040.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 101085.96, 20200423.0, 'NAA8', 1930813040.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 4953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930830819.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 55151.28, 20200428.0, 'NAC6', 1930830819.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 4954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930653202.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 58578.5, 20200315.0, 'NAH4', 1930653202.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 4955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU ', 2020.0, 1930581869.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 6444.07, 20200228.0, 'NAA8', 1930581869.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 4956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F corporation', 2020.0, 1930586875.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 20984.85, 20200302.0, 'NAA8', 1930586875.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 4957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930599315.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 32715.47, 20200304.0, 'NAAX', 1930599315.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200571849, 'US in', 2020.0, 1930725801.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 10433.22, 20200331.0, 'NAA8', 1930725801.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 4959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930823414.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 53102.67, 20200424.0, 'NAA8', 1930823414.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 4960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930639523.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 43899.28, 20200312.0, 'NAH4', 1930639523.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 4961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930611120.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 720.71, 20200306.0, 'NAA8', 1930611120.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE llc', 2020.0, 1930730496.0, '2020-04-03', 20200402, 20200403, '2020-06-07', 'USD', 'RV', 1.0, 13915.32, 20200403.0, 'NAGD', 1930730496.0, 1, '2020-06-01', 'early' ); /* INSERT QUERY NO: 4963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078795, 'H T H in', 2020.0, 1930638407.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 5288.25, 20200311.0, 'NAA8', 1930638407.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 4964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930767562.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 10360.98, 20200401.0, 'NAM4', 1930767562.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 4965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER associates', 2020.0, 1930606353.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 67335.56, 20200306.0, 'NAA8', 1930606353.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT in', 2020.0, 1930570822.0, '2020-02-27', 20200226, 20200227, '2020-04-02', 'USD', 'RV', 1.0, 17756.4, 20200227.0, 'NAG2', 1930570822.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 4967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930664774.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 60694.29, 20200317.0, 'NAU5', 1930664774.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 4968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930828195.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 132.72, 20200426.0, 'NAA8', 1930828195.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER us', 2020.0, 1930787917.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 74426.38, 20200415.0, 'NAA8', 1930787917.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 4970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930762797.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 8899.15, 20200408.0, 'NAA8', 1930762797.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT us', 2020.0, 1930689646.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 18482.26, 20200324.0, 'NAA8', 1930689646.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 4972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930697896.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 5948.83, 20200325.0, 'NAH4', 1930697896.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 4973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930696279.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 25548.48, 20200326.0, 'NAA8', 1930696279.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930756960.0, '2020-04-06', 20200407, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 5678.81, 20200406.0, 'NAC6', 1930756960.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT in', 2020.0, 1930861671.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 23210.79, 20200506.0, 'NAA8', 1930861671.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 4976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930585126.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 13215.54, 20200303.0, 'NAAX', 1930585126.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 4977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930586627.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 18884.23, 20200303.0, 'NAH4', 1930586627.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 4978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE foundation', 2020.0, 1930760571.0, '2020-04-07', 20200408, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 32053.17, 20200407.0, 'NAA8', 1930760571.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 4979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930781062.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 372.8, 20200414.0, 'NAC6', 1930781062.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 4980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930745241.0, '2020-04-08', 20200403, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 33250.26, 20200408.0, 'NAA8', 1930745241.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 4981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930615299.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 7366.6, 20200301.0, 'NAM4', 1930615299.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 4982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200784489, 'GE in', 2020.0, 1930791284.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 36678.6, 20200416.0, 'NAA8', 1930791284.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 4983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930798136.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 30595.04, 20200420.0, 'NAH4', 1930798136.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 4984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104429, 'COSTCO corporation', 2020.0, 2960621581.0, '2020-03-18', 20200318, 20200318, '2020-03-30', 'CAD', 'RV', 1.0, 4402.77, 20200320.0, 'CA10', 2960621581.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 4985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783734, 'FAREW us', 2020.0, 1930610980.0, '2020-03-05', 20200306, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 52995.88, 20200305.0, 'NAA8', 1930610980.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 4986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB corporation', 2020.0, 2960618576.0, '2020-03-07', 20200307, 20200307, '2020-03-26', 'CAD', 'RV', 1.0, 151241.12, 20200316.0, 'CA10', 2960618576.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 4987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB ', 2020.0, 2960627547.0, '2020-04-09', 20200409, 20200409, '2020-04-28', 'CAD', 'RV', 1.0, 149542.97, 20200418.0, 'CA10', 2960627547.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 4988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930722859.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 15260.58, 20200402.0, 'NAH4', 1930722859.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 4989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930726877.0, '2020-04-01', 20200401, 20200401, '2020-06-05', 'USD', 'RV', 1.0, 35516.16, 20200401.0, 'NAGD', 1930726877.0, 1, '2020-06-02', 'early' ); /* INSERT QUERY NO: 4990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS foundation', 2020.0, 1930692368.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 145923.8, 20200325.0, 'NAA8', 1930692368.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 4991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA associates', 2020.0, 1930705433.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 11857.71, 20200326.0, 'NAA8', 1930705433.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 4992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU in', 2020.0, 1930831705.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 1125.97, 20200428.0, 'NAA8', 1930831705.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 4993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD ', 2020.0, 1930630731.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 6888.0, 20200311.0, 'NAA8', 1930630731.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 4994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930883355.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 28869.96, 20200510.0, 'NAH4', 1930883355.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 4995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC trust', 2020.0, 1930772844.0, '2020-04-10', 20200410, 20200410, '2020-04-11', 'USD', 'RV', 1.0, 3040.78, 20200401.0, 'NAM2', 1930772844.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 4996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930711057.0, '2020-04-02', 20200328, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 718.32, 20200402.0, 'NAA8', 1930711057.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 4997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930793961.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 9238.6, 20200417.0, 'NAH4', 1930793961.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 4998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930826558.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 19737.85, 20200425.0, 'NAA8', 1930826558.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 4999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930858393.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 444.23, 20200506.0, 'NAA8', 1930858393.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER corporation', 2020.0, 1930587327.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 90337.94, 20200302.0, 'NAA8', 1930587327.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 5001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930622161.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 2797.9, 20200310.0, 'NAH4', 1930622161.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930844418.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 13746.91, 20200502.0, 'NAH4', 1930844418.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 5003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930732258.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 59075.93, 20200403.0, 'NAH4', 1930732258.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930827013.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 41429.49, 20200426.0, 'NAH4', 1930827013.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930626086.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 5625.41, 20200310.0, 'NAH4', 1930626086.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI foundation', 2020.0, 1930720328.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 63180.22, 20200330.0, 'NAA8', 1930720328.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930663633.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 19628.0, 20200319.0, 'NAA8', 1930663633.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 5008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200785971, 'SYSCO ', 2020.0, 1930599875.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 23907.41, 20200305.0, 'NAA8', 1930599875.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930764688.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 18528.71, 20200409.0, 'NAH4', 1930764688.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 5010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930747517.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 5804.26, 20200404.0, 'NAA8', 1930747517.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930610044.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 51591.37, 20200306.0, 'NAA8', 1930610044.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930828501.0, '2020-04-28', 20200426, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 468.78, 20200428.0, 'NAH4', 1930828501.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200063296, 'SUIS llc', 2020.0, 1930705892.0, '2020-03-26', 20200326, 20200326, '2020-04-25', 'USD', 'RV', 1.0, 357.91, 20200326.0, 'NAD5', 1930705892.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ ', 2020.0, 1930705236.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 50612.33, 20200325.0, 'NAA8', 1930705236.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930689507.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 29576.2, 20200324.0, 'NAH4', 1930689507.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930673283.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 30099.91, 20200320.0, 'NAH4', 1930673283.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930636855.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 54285.62, 20200311.0, 'NAH4', 1930636855.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930622731.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 346.59, 20200309.0, 'NAA8', 1930622731.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930718497.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 59170.63, 20200331.0, 'NAH4', 1930718497.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930738158.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 11205.57, 20200403.0, 'NAH4', 1930738158.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930749020.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 838.95, 20200405.0, 'NAH4', 1930749020.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M in', 2020.0, 2960623827.0, '2020-03-25', 20200325, 20200325, '2020-04-04', 'CAD', 'RV', 1.0, 82445.04, 20200325.0, 'CA10', 2960623827.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 5023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930732564.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 53657.67, 20200403.0, 'NAH4', 1930732564.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930806291.0, '2020-04-24', 20200421, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 15494.24, 20200424.0, 'NAA8', 1930806291.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S associates', 2020.0, 1930632827.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 84131.09, 20200312.0, 'NAA8', 1930632827.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930777973.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 89954.23, 20200411.0, 'NAU5', 1930777973.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC foundation', 2020.0, 1930596181.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 2921.71, 20200303.0, 'NAA8', 1930596181.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 5028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C ', 2020.0, 1930765040.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1042.7, 20200409.0, 'NAA8', 1930765040.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930802907.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 14441.97, 20200420.0, 'NAH4', 1930802907.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO corp', 2020.0, 1930593258.0, '2020-03-08', 20200303, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 16153.27, 20200308.0, 'NAA8', 1930593258.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 5031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH associates', 2020.0, 1930653632.0, '2020-03-14', 20200315, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 112397.66, 20200314.0, 'NAA8', 1930653632.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930752165.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 32424.83, 20200407.0, 'NAH4', 1930752165.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 5033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930718513.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 1322.24, 20200330.0, 'NAH4', 1930718513.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS systems', 2020.0, 1930595879.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 63301.92, 20200304.0, 'NAA8', 1930595879.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER systems', 2020.0, 1930748749.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 41088.3, 20200405.0, 'NAA8', 1930748749.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930750025.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 15508.92, 20200405.0, 'NAH4', 1930750025.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC ', 2020.0, 1930585752.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 28513.57, 20200302.0, 'NAA8', 1930585752.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 5038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930818037.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 388.08, 20200416.0, 'NAM4', 1930818037.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930885123.0, '2020-05-10', 20200510, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 23099.55, 20200510.0, 'NAH4', 1930885123.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 5040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D systems', 2020.0, 1930817957.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 5969.38, 20200424.0, 'NAA8', 1930817957.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200774000, 'RALEY in', 2020.0, 1930721336.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 62288.31, 20200330.0, 'NAA8', 1930721336.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960628624.0, '2020-04-15', 20200415, 20200415, '2020-04-26', 'CAD', 'RV', 1.0, 183897.36, 20200416.0, 'CA10', 2960628624.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 5043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST systems', 2020.0, 1930686376.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 14896.4, 20200324.0, 'NAAX', 1930686376.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO trust', 2020.0, 1930712159.0, '2020-03-27', 20200327, 20200327, '2020-04-28', 'USD', 'RV', 1.0, 8785.54, 20200327.0, 'NA32', 1930712159.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930669298.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 15367.37, 20200319.0, 'NAA8', 1930669298.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930885910.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 7850.87, 20200512.0, 'NAH4', 1930885910.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 5047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER in', 2020.0, 1930752469.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 116208.14, 20200405.0, 'NAA8', 1930752469.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 5048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER associates', 2020.0, 1930573549.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 44436.71, 20200227.0, 'NAA8', 1930573549.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 5049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT in', 2020.0, 1930828551.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 26290.66, 20200427.0, 'NAU5', 1930828551.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 5050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930726779.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 7650.24, 20200403.0, 'NAH4', 1930726779.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930622636.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 53551.27, 20200309.0, 'NAH4', 1930622636.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 5052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960631852.0, '2020-05-01', 20200501, 20200501, '2020-05-15', 'CAD', 'RV', 1.0, 59012.14, 20200505.0, 'CA10', 2960631852.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 5053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930585436.0, '2020-03-02', 20200301, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 7446.6, 20200302.0, 'NAGD', 1930585436.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO corp', 2020.0, 2960627158.0, '2020-04-11', 20200411, 20200411, '2020-04-22', 'CAD', 'RV', 1.0, 40847.86, 20200412.0, 'CA10', 2960627158.0, 1, '2020-04-26', '0-15 days' ); /* INSERT QUERY NO: 5055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930772901.0, '2020-04-10', 20200409, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 572.16, 20200410.0, 'NAGD', 1930772901.0, 1, '2020-06-10', 'early' ); /* INSERT QUERY NO: 5056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930852797.0, '2020-05-06', 20200503, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 32663.02, 20200506.0, 'NAH4', 1930852797.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930777655.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 661.11, 20200413.0, 'NAH4', 1930777655.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 5058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930637872.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 71979.41, 20200313.0, 'NAH4', 1930637872.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100057168, 'CO co', 2020.0, 1930815446.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 103235.85, 20200423.0, 'NAA8', 1930815446.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930737897.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 91.93, 20200403.0, 'NAH4', 1930737897.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC us', 2020.0, 1930866662.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 6903.38, 20200506.0, 'NAA8', 1930866662.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930690067.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 5739.54, 20200326.0, 'NAH4', 1930690067.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 5063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930862217.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 2720.37, 20200506.0, 'NAA8', 1930862217.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 5064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930813617.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 45754.77, 20200422.0, 'NAH4', 1930813617.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930801499.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 42708.7, 20200420.0, 'NAA8', 1930801499.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 5066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO trust', 2020.0, 2960622489.0, '2020-03-23', 20200323, 20200323, '2020-04-03', 'CAD', 'RV', 1.0, 57452.49, 20200324.0, 'CA10', 2960622489.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 5067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200439158, 'POST us', 2020.0, 1930645602.0, '2020-03-15', 20200312, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 17916.0, 20200315.0, 'NAA8', 1930645602.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930684432.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 29282.88, 20200323.0, 'NAH4', 1930684432.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC co', 2020.0, 1930599631.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 11664.0, 20200301.0, 'NAM2', 1930599631.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 5070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200132251, 'SUPERB ', 2020.0, 1930685462.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 8946.02, 20200324.0, 'NAA8', 1930685462.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930655173.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 1898.2, 20200316.0, 'NAH4', 1930655173.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200126819, 'MCLANE corp', 2020.0, 1930620832.0, '2020-03-12', 20200307, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 335.52, 20200312.0, 'NAA8', 1930620832.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930670496.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 18676.54, 20200320.0, 'NAH4', 1930670496.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930798723.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 42225.69, 20200417.0, 'NAH4', 1930798723.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS foundation', 2020.0, 1930608452.0, '2020-03-07', 20200305, 20200307, '2020-04-11', 'USD', 'RV', 1.0, 9838.08, 20200307.0, 'NAG2', 1930608452.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 5076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930812786.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 15082.67, 20200423.0, 'NAH4', 1930812786.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW systems', 2020.0, 1930687371.0, '2020-03-28', 20200323, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 92734.24, 20200328.0, 'NAA8', 1930687371.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930682001.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 179.17, 20200320.0, 'NAU5', 1930682001.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH llc', 2020.0, 1930797768.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 8322.0, 20200417.0, 'NAA8', 1930797768.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 5080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE trust', 2020.0, 1930670293.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 78829.17, 20200320.0, 'NAA8', 1930670293.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S co', 2020.0, 1930687554.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 68653.67, 20200322.0, 'NAA8', 1930687554.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corporation', 2020.0, 1930733357.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 99173.09, 20200402.0, 'NAA8', 1930733357.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930632680.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 71881.85, 20200310.0, 'NAA8', 1930632680.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100033439, 'WESTI trust', 2020.0, 1930815978.0, '2020-04-24', 20200422, 20200424, '2020-05-04', 'USD', 'RV', 1.0, 24079.2, 20200424.0, 'NA10', 1930815978.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK in', 2020.0, 1930688767.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 26465.73, 20200323.0, 'NAA8', 1930688767.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930674258.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 314.76, 20200320.0, 'NAC6', 1930674258.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930730207.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 31027.8, 20200403.0, 'NAH4', 1930730207.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE systems', 2020.0, 1930847923.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 15090.56, 20200502.0, 'NAA8', 1930847923.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200799367, 'MCL corp', 2020.0, 1930823848.0, '2020-04-24', 20200424, 20200424, '2020-03-22', 'USD', 'RV', 1.0, 16482.33, 20200307.0, 'NAA8', 1930823848.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE corp', 2020.0, 1930674497.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 7788.0, 20200320.0, 'NAA8', 1930674497.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & corp', 2020.0, 1930690907.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 17655.74, 20200323.0, 'NAA8', 1930690907.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930769340.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 51014.55, 20200409.0, 'NAA8', 1930769340.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930715979.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 8299.7, 20200401.0, 'NAH4', 1930715979.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 5094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930723780.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 53683.16, 20200402.0, 'NAH4', 1930723780.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M foundation', 2020.0, 1930814774.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 18041.6, 20200424.0, 'NAA8', 1930814774.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH systems', 2020.0, 1930859640.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 19686.1, 20200504.0, 'NAA8', 1930859640.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 5097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930673312.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 39898.5, 20200319.0, 'NAH4', 1930673312.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F foundation', 2020.0, 2960614260.0, '2020-02-28', 20200228, 20200228, '2020-03-10', 'CAD', 'RV', 1.0, 15057.7, 20200229.0, 'CA10', 2960614260.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 5099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930788526.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 12226.54, 20200415.0, 'NAH4', 1930788526.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 5100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930759807.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 15874.78, 20200409.0, 'NAH4', 1930759807.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 5101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930717086.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 30340.07, 20200329.0, 'NAH4', 1930717086.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930576774.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 37210.17, 20200228.0, 'NAC6', 1930576774.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 5103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR corp', 2020.0, 1930605246.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 18240.12, 20200307.0, 'NAA8', 1930605246.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 5104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930853060.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 10628.52, 20200503.0, 'NAH4', 1930853060.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930719247.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 100136.29, 20200330.0, 'NAA8', 1930719247.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 5106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930675512.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 44009.55, 20200322.0, 'NAH4', 1930675512.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930637388.0, '2020-03-11', 20200311, 20200311, '2020-05-15', 'USD', 'RV', 1.0, 18547.2, 20200311.0, 'NAGD', 1930637388.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930604849.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 6899.26, 20200304.0, 'NAH4', 1930604849.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 5109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930754086.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 55006.54, 20200406.0, 'NAH4', 1930754086.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE us', 2020.0, 1930593282.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 99303.26, 20200303.0, 'NAA8', 1930593282.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930778909.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 6189.6, 20200412.0, 'NAH4', 1930778909.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930567057.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 67197.96, 20200227.0, 'NAH4', 1930567057.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 5113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930652675.0, '2020-03-14', 20200314, 20200314, '2020-05-18', 'USD', 'RV', 1.0, 9528.18, 20200314.0, 'NAGD', 1930652675.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 5114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930743964.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 5745.48, 20200404.0, 'NAA8', 1930743964.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO ', 2020.0, 1930708321.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 25040.27, 20200326.0, 'NAA8', 1930708321.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE us', 2020.0, 1930636709.0, '2020-03-17', 20200310, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 2035.38, 20200317.0, 'NAA8', 1930636709.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA corporation', 2020.0, 1930586917.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 38782.28, 20200303.0, 'NAA8', 1930586917.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930732633.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 6532.6, 20200403.0, 'NAH4', 1930732633.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930823069.0, '2020-04-24', 20200424, 20200424, '2020-04-26', 'USD', 'RV', 1.0, 6143.22, 20200416.0, 'NAM2', 1930823069.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC foundation', 2020.0, 1930670857.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 120852.05, 20200320.0, 'NAA8', 1930670857.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930670539.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 135152.8, 20200318.0, 'NAA8', 1930670539.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930791182.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 41523.81, 20200415.0, 'NAH4', 1930791182.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 5123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930853326.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 16086.93, 20200503.0, 'NAH4', 1930853326.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930672422.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 16841.12, 20200316.0, 'NAM4', 1930672422.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930764639.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 63097.17, 20200410.0, 'NAH4', 1930764639.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA foundation', 2020.0, 1930690670.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 329.94, 20200316.0, 'NAM4', 1930690670.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930687117.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 36162.43, 20200322.0, 'NAH4', 1930687117.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930624541.0, '2020-03-09', 20200309, 20200309, '2020-04-10', 'USD', 'RV', 1.0, 20458.23, 20200309.0, 'NA32', 1930624541.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930685765.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 276.08, 20200324.0, 'NAA8', 1930685765.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930844288.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 54876.18, 20200430.0, 'NAH4', 1930844288.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 5131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930859662.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 3468.23, 20200506.0, 'NAH4', 1930859662.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US us', 2020.0, 1930750697.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 2296.04, 20200406.0, 'NAA8', 1930750697.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 5133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930681392.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 33143.95, 20200321.0, 'NAH4', 1930681392.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO associates', 2020.0, 2960619833.0, '2020-03-09', 20200309, 20200309, '2020-03-20', 'CAD', 'RV', 1.0, 49160.95, 20200310.0, 'CA10', 2960619833.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 5135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930779179.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 19079.14, 20200412.0, 'NAH4', 1930779179.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930685222.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 92905.15, 20200323.0, 'NAC6', 1930685222.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930696279.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 25548.48, 20200326.0, 'NAA8', 1930696279.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930760558.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 61994.78, 20200409.0, 'NAC6', 1930760558.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930813774.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 49957.81, 20200424.0, 'NAH4', 1930813774.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC in', 2020.0, 1930599749.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 3097.26, 20200301.0, 'NAM4', 1930599749.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH associates', 2020.0, 1930689629.0, '2020-03-26', 20200323, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 7563.0, 20200326.0, 'NAA8', 1930689629.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930584254.0, '2020-02-29', 20200229, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 41980.34, 20200229.0, 'NAGD', 1930584254.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 5143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930859318.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 2352.97, 20200504.0, 'NAH4', 1930859318.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 5144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930616933.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 17174.66, 20200306.0, 'NAH4', 1930616933.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103699, 'L&E IN corp', 2020.0, 1991840184.0, '2020-03-31', 20200329, 20200331, '2020-04-30', 'USD', 'RV', 1.0, 59857.98, 20200331.0, 'NAVE', 1991840184.0, 1, '2020-05-05', '0-15 days' ); /* INSERT QUERY NO: 5146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930698301.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 1993.93, 20200325.0, 'NAA8', 1930698301.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930718316.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 13850.12, 20200330.0, 'NAAX', 1930718316.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corp', 2020.0, 1930772441.0, '2020-04-10', 20200410, 20200410, '2020-04-11', 'USD', 'RV', 1.0, 49281.43, 20200401.0, 'NAM2', 1930772441.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930832196.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 943.12, 20200428.0, 'NAH4', 1930832196.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930684484.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 66656.15, 20200322.0, 'NAA8', 1930684484.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH corporation', 2020.0, 1930797691.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 7916.78, 20200417.0, 'NAA8', 1930797691.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 5152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930826669.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 653.17, 20200427.0, 'NAH4', 1930826669.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930670432.0, '2020-03-20', 20200319, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 2118.17, 20200320.0, 'NAGD', 1930670432.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 5154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER foundation', 2020.0, 2960627754.0, '2020-04-11', 20200411, 20200411, '2020-04-29', 'CAD', 'RV', 1.0, 150042.59, 20200419.0, 'CA10', 2960627754.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 5155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930717802.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 40153.65, 20200329.0, 'NAH4', 1930717802.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930854176.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 8475.45, 20200505.0, 'NAH4', 1930854176.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC systems', 2020.0, 2960622341.0, '2020-03-19', 20200319, 20200319, '2020-04-05', 'CAD', 'RV', 1.0, 151.02, 20200326.0, 'CA10', 2960622341.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 5158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930831524.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 1214.2, 20200428.0, 'NAA8', 1930831524.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930821651.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 41847.25, 20200424.0, 'NAH4', 1930821651.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO foundation', 2020.0, 2960629908.0, '2020-04-20', 20200420, 20200420, '2020-05-02', 'CAD', 'RV', 1.0, 2201.38, 20200422.0, 'CA10', 2960629908.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 5161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930755357.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 45616.59, 20200407.0, 'NAC6', 1930755357.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930683617.0, '2020-03-20', 20200321, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 485.06, 20200320.0, 'NAH4', 1930683617.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO systems', 2020.0, 2960623769.0, '2020-03-26', 20200326, 20200326, '2020-04-05', 'CAD', 'RV', 1.0, 94523.44, 20200326.0, 'CA10', 2960623769.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 5164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO ', 2020.0, 2960631174.0, '2020-05-01', 20200501, 20200501, '2020-05-14', 'CAD', 'RV', 1.0, 5955.46, 20200504.0, 'CA10', 2960631174.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 5165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH us', 2020.0, 1930720718.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 42104.91, 20200331.0, 'NAC6', 1930720718.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930684859.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 79215.91, 20200322.0, 'NAA8', 1930684859.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI associates', 2020.0, 1930725360.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 76789.45, 20200401.0, 'NAA8', 1930725360.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960626367.0, '2020-04-06', 20200406, 20200406, '2020-04-16', 'CAD', 'RV', 1.0, 117266.61, 20200406.0, 'CA10', 2960626367.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 5169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS trust', 2020.0, 1930686144.0, '2020-03-24', 20200322, 20200324, '2020-04-28', 'USD', 'RV', 1.0, 6558.72, 20200324.0, 'NAG2', 1930686144.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 5170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930710813.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 46515.46, 20200328.0, 'NAH4', 1930710813.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200865160, 'MAX foundation', 2020.0, 1930774704.0, '2020-04-15', 20200410, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 6445.29, 20200415.0, 'NAA8', 1930774704.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 5172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930832439.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 498.03, 20200428.0, 'NAH4', 1930832439.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930833678.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 15643.67, 20200429.0, 'NAH4', 1930833678.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930643039.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 28970.28, 20200313.0, 'NAAX', 1930643039.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER us', 2020.0, 1930580298.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 1773.64, 20200228.0, 'NAA8', 1930580298.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 5176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE co', 2020.0, 1930653810.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 120153.67, 20200314.0, 'NAA8', 1930653810.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741831, 'SUPE us', 2020.0, 1930793466.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 13374.25, 20200417.0, 'NAA8', 1930793466.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 5178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930765418.0, '2020-04-06', 20200408, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 41133.85, 20200406.0, 'NAH4', 1930765418.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930837919.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 4265.51, 20200430.0, 'NAC6', 1930837919.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO us', 2020.0, 2960623134.0, '2020-03-20', 20200320, 20200320, '2020-04-02', 'CAD', 'RV', 1.0, 49328.71, 20200323.0, 'CA10', 2960623134.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 5181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783609, 'PROFIC in', 2020.0, 1930808917.0, '2020-04-24', 20200421, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 5501.33, 20200424.0, 'NAA8', 1930808917.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA ', 2020.0, 1930607100.0, '2020-03-05', 20200305, 20200305, '2020-03-11', 'USD', 'RV', 1.0, 15736.05, 20200301.0, 'NAM2', 1930607100.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 5183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930772303.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 13541.47, 20200410.0, 'NAH4', 1930772303.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930605273.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 65657.5, 20200306.0, 'NAH4', 1930605273.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930685857.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 359.83, 20200323.0, 'NAC6', 1930685857.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930640951.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 429.51, 20200312.0, 'NAH4', 1930640951.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 5187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG ', 2020.0, 1930783448.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 60520.18, 20200413.0, 'NAA8', 1930783448.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 5188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR foundation', 2020.0, 2960617161.0, '2020-02-28', 20200228, 20200228, '2020-03-10', 'CAD', 'RV', 1.0, 1613.98, 20200229.0, 'CA10', 2960617161.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 5189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE co', 2020.0, 1930724749.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 2147.64, 20200401.0, 'NAA8', 1930724749.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770677, 'KRAS corp', 2020.0, 1930798779.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 91117.27, 20200420.0, 'NAA8', 1930798779.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930684247.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 65444.14, 20200323.0, 'NAH4', 1930684247.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930779275.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 3986.57, 20200415.0, 'NAA8', 1930779275.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC foundation', 2020.0, 1930635229.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 54782.62, 20200312.0, 'NAA8', 1930635229.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930751976.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 37015.1, 20200406.0, 'NAH4', 1930751976.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD in', 2020.0, 1930686873.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 19742.24, 20200324.0, 'NAA8', 1930686873.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930832718.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 58796.8, 20200429.0, 'NAH4', 1930832718.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930666731.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 142.22, 20200319.0, 'NAH4', 1930666731.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S foundation', 2020.0, 1930832432.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 155160.53, 20200428.0, 'NAA8', 1930832432.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ us', 2020.0, 1930704464.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 3097.0, 20200326.0, 'NAA8', 1930704464.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930791173.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 51644.22, 20200417.0, 'NAH4', 1930791173.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930598089.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 36776.23, 20200304.0, 'NAAX', 1930598089.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960621982.0, '2020-03-19', 20200319, 20200319, '2020-03-29', 'CAD', 'RV', 1.0, 70462.55, 20200319.0, 'CA10', 2960621982.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 5203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930620643.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 37609.1, 20200307.0, 'NAH4', 1930620643.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100004536, 'BAS associates', 2020.0, 1930703422.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 96153.37, 20200326.0, 'NAA8', 1930703422.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE llc', 2020.0, 1930725441.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 26803.83, 20200331.0, 'NAA8', 1930725441.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930653136.0, '2020-03-18', 20200314, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 15099.99, 20200318.0, 'NAH4', 1930653136.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930718889.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 4977.62, 20200331.0, 'NAH4', 1930718889.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL co', 2020.0, 1930825553.0, '2020-04-24', 20200424, 20200424, '2020-03-21', 'USD', 'RV', 1.0, 20548.24, 20200306.0, 'NAA8', 1930825553.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 5209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH in', 2020.0, 1930854896.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 8203.99, 20200505.0, 'NAC6', 1930854896.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930795698.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 5583.55, 20200417.0, 'NAH4', 1930795698.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR llc', 2020.0, 2960622024.0, '2020-03-19', 20200319, 20200319, '2020-03-31', 'CAD', 'RV', 1.0, 38217.05, 20200321.0, 'CA10', 2960622024.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 5212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930731998.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 76049.01, 20200402.0, 'NAH4', 1930731998.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corporation', 2020.0, 2960632529.0, '2020-05-01', 20200501, 20200501, '2020-05-12', 'CAD', 'RV', 1.0, 64724.91, 20200502.0, 'CA10', 2960632529.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 5214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930580259.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 28381.85, 20200227.0, 'NAA8', 1930580259.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 5215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS us', 2020.0, 1930709216.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 144399.57, 20200328.0, 'NAA8', 1930709216.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930746944.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 11442.17, 20200404.0, 'NAH4', 1930746944.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930837346.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 4452.44, 20200507.0, 'NAH4', 1930837346.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 5218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930730840.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 14019.01, 20200403.0, 'NAA8', 1930730840.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL llc', 2020.0, 1930637091.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 385.26, 20200312.0, 'NAA8', 1930637091.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corporation', 2020.0, 1930837898.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 89531.7, 20200429.0, 'NAA8', 1930837898.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930593700.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 416.74, 20200304.0, 'NAC6', 1930593700.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797984, 'PIGGLY co', 2020.0, 1930794574.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 107256.52, 20200417.0, 'NAA8', 1930794574.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 5223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930584798.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 2114.24, 20200301.0, 'NAU5', 1930584798.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930778643.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 33937.81, 20200412.0, 'NAH4', 1930778643.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE us', 2020.0, 1930704195.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 69383.87, 20200326.0, 'NAA8', 1930704195.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930855300.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 2765.95, 20200504.0, 'NAH4', 1930855300.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 5227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F llc', 2020.0, 1930783496.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 26145.2, 20200414.0, 'NAA8', 1930783496.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930788525.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 48143.87, 20200417.0, 'NAA8', 1930788525.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 5229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930583611.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 34205.97, 20200229.0, 'NAH4', 1930583611.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930671354.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 6361.07, 20200319.0, 'NAH4', 1930671354.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER llc', 2020.0, 1930820428.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 101460.99, 20200425.0, 'NAA8', 1930820428.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930777155.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 7713.07, 20200412.0, 'NAH4', 1930777155.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930860567.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 19765.64, 20200506.0, 'NAH4', 1930860567.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930749434.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 20958.55, 20200406.0, 'NAH4', 1930749434.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930718367.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 19182.49, 20200329.0, 'NAH4', 1930718367.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE foundation', 2020.0, 1930778562.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 106209.88, 20200416.0, 'NAA8', 1930778562.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 5237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930773055.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 108840.98, 20200409.0, 'NAA8', 1930773055.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930890210.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 11355.66, 20200512.0, 'NAH4', 1930890210.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 5239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- co', 2020.0, 2960627914.0, '2020-04-11', 20200411, 20200411, '2020-04-21', 'CAD', 'RV', 1.0, 91757.97, 20200411.0, 'CA10', 2960627914.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 5240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100033300, 'CLAS systems', 2020.0, 1930686352.0, '2020-03-25', 20200323, 20200325, '2020-04-04', 'USD', 'RV', 1.0, 65869.2, 20200325.0, 'NA10', 1930686352.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930581196.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 19610.07, 20200229.0, 'NAH4', 1930581196.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930780819.0, '2020-04-12', 20200413, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 446.86, 20200412.0, 'NAA8', 1930780819.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930862256.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 37464.15, 20200506.0, 'NAH4', 1930862256.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST associates', 2020.0, 1930686465.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 55531.5, 20200324.0, 'NAAX', 1930686465.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930704117.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 24066.04, 20200326.0, 'NAC6', 1930704117.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930676411.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 312.48, 20200316.0, 'NAM4', 1930676411.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930823055.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 813.17, 20200424.0, 'NAH4', 1930823055.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712349, 'FOOD co', 2020.0, 1930660089.0, '2020-03-20', 20200317, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 7138.77, 20200320.0, 'NAA8', 1930660089.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140103278, 'COS llc', 2020.0, 1991839696.0, '2020-03-14', 20200310, 20200314, '2020-05-13', 'USD', 'RV', 1.0, 17829.81, 20200314.0, 'NAUZ', 1991839696.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 5250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200758531, 'BRENH ', 2020.0, 1930753891.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 39022.43, 20200406.0, 'NAA8', 1930753891.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930585898.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 5114.6, 20200302.0, 'NAH4', 1930585898.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930668378.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 3228.13, 20200319.0, 'NAH4', 1930668378.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930610776.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 15638.8, 20200308.0, 'NAH4', 1930610776.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930699853.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 18.49, 20200327.0, 'NAH4', 1930699853.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200737918, 'W LEE foundation', 2020.0, 1930837977.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 22111.63, 20200430.0, 'NAA8', 1930837977.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 5256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930782718.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 13278.4, 20200413.0, 'NAA8', 1930782718.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 5257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930716272.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 19090.95, 20200328.0, 'NAA8', 1930716272.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930716599.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 45525.24, 20200328.0, 'NAAX', 1930716599.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 5259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930710960.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 471.56, 20200327.0, 'NAH4', 1930710960.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930832611.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 6540.07, 20200429.0, 'NAH4', 1930832611.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930656004.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 221.57, 20200315.0, 'NAA8', 1930656004.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA llc', 2020.0, 1930673586.0, '2020-03-19', 20200319, 20200319, '2020-04-08', 'USD', 'RV', 1.0, 622.64, 20200319.0, 'NAD1', 1930673586.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930710213.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 20271.96, 20200328.0, 'NAH4', 1930710213.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930842173.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 380.77, 20200430.0, 'NAA8', 1930842173.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 5265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930798111.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 1779.04, 20200418.0, 'NAH4', 1930798111.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930769140.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 16120.04, 20200409.0, 'NAC6', 1930769140.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930833459.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 48618.69, 20200429.0, 'NAH4', 1930833459.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930683196.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 18389.83, 20200322.0, 'NAH4', 1930683196.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100021489, 'CHENS E us', 2020.0, 2960629016.0, '2020-04-14', 20200414, 20200414, '2020-04-27', 'CAD', 'RV', 1.0, 15559.25, 20200417.0, 'CA10', 2960629016.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 5270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200886415, 'COSTCO in', 2020.0, 1930648990.0, '2020-03-18', 20200313, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 13889.7, 20200318.0, 'NAA8', 1930648990.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930602630.0, '2020-03-05', 20200304, 20200305, '2020-05-09', 'USD', 'RV', 1.0, 67.2, 20200305.0, 'NAGD', 1930602630.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930706034.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 62022.42, 20200326.0, 'NAAX', 1930706034.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930717387.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 12668.17, 20200331.0, 'NAH4', 1930717387.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC us', 2020.0, 1930768851.0, '2020-04-14', 20200409, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 13148.0, 20200414.0, 'NAA8', 1930768851.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930652532.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 20155.78, 20200314.0, 'NAH4', 1930652532.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930747451.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 54756.77, 20200404.0, 'NAH4', 1930747451.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930602909.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 1898.9, 20200305.0, 'NAH4', 1930602909.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200516657, 'MAINES us', 2020.0, 1930582890.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 4829.83, 20200304.0, 'NAA8', 1930582890.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960623227.0, '2020-03-22', 20200322, 20200322, '2020-04-04', 'CAD', 'RV', 1.0, 103915.69, 20200325.0, 'CA10', 2960623227.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 5280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930643228.0, '2020-03-15', 20200312, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 13789.99, 20200315.0, 'NAH4', 1930643228.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200050554, 'KUNA associates', 2020.0, 1930666342.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 25581.8, 20200317.0, 'NAA8', 1930666342.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 5282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783734, 'FAREW us', 2020.0, 1930881773.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 107314.41, 20200509.0, 'NAA8', 1930881773.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930621765.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 54640.83, 20200310.0, 'NAH4', 1930621765.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT trust', 2020.0, 1930723710.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 6351.54, 20200331.0, 'NAA8', 1930723710.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930719067.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 42005.64, 20200330.0, 'NAH4', 1930719067.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930721473.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 21898.14, 20200331.0, 'NAH4', 1930721473.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930799660.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 19289.86, 20200419.0, 'NAC6', 1930799660.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B corporation', 2020.0, 1930797471.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 19919.09, 20200417.0, 'NAA8', 1930797471.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 5289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE associates', 2020.0, 1930800154.0, '2020-04-21', 20200418, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 19111.37, 20200421.0, 'NAA8', 1930800154.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930759341.0, '2020-04-10', 20200407, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 15026.34, 20200410.0, 'NAA8', 1930759341.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930855332.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 2352.97, 20200504.0, 'NAH4', 1930855332.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 5292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M corporation', 2020.0, 1930783013.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 147794.8, 20200415.0, 'NAA8', 1930783013.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930714582.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 32456.0, 20200329.0, 'NAH4', 1930714582.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930592994.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 7111.56, 20200303.0, 'NAH4', 1930592994.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 5295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M co', 2020.0, 2960624913.0, '2020-03-30', 20200330, 20200330, '2020-04-09', 'CAD', 'RV', 1.0, 38789.64, 20200330.0, 'CA10', 2960624913.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 5296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ foundation', 2020.0, 1930594366.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 112058.35, 20200304.0, 'NAA8', 1930594366.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930652916.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 8414.22, 20200315.0, 'NAH4', 1930652916.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST corporation', 2020.0, 1930868325.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 33773.06, 20200507.0, 'NAAX', 1930868325.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 5299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - associates', 2020.0, 1930606348.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 50911.41, 20200305.0, 'NAA8', 1930606348.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930623867.0, '2020-03-08', 20200309, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 29484.41, 20200308.0, 'NAH4', 1930623867.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL corp', 2020.0, 1930753509.0, '2020-04-04', 20200406, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 50139.0, 20200404.0, 'NAA8', 1930753509.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200515231, 'US us', 2020.0, 1930831095.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 7544.6, 20200427.0, 'NAA8', 1930831095.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 5303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930780410.0, '2020-04-13', 20200413, 20200413, '2020-06-17', 'USD', 'RV', 1.0, 5832.77, 20200413.0, 'NAGD', 1930780410.0, 1, '2020-06-12', 'early' ); /* INSERT QUERY NO: 5304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930611308.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 22693.31, 20200306.0, 'NAH4', 1930611308.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104331, 'CORE-M associates', 2020.0, 2960622011.0, '2020-03-18', 20200318, 20200318, '2020-04-04', 'CAD', 'RV', 1.0, 9234.75, 20200325.0, 'CA10', 2960622011.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 5306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930580652.0, '2020-02-27', 20200228, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 20753.51, 20200227.0, 'NAU5', 1930580652.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 5307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930763924.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 5812.17, 20200409.0, 'NAH4', 1930763924.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 5308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930731997.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 2373.96, 20200402.0, 'NAH4', 1930731997.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930641615.0, '2020-03-17', 20200311, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 3863.93, 20200317.0, 'NAAX', 1930641615.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 5310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930668528.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 83494.71, 20200319.0, 'NAA8', 1930668528.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE co', 2020.0, 1930828683.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 21731.46, 20200428.0, 'NAA8', 1930828683.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 5312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO systems', 2020.0, 1930580151.0, '2020-03-05', 20200302, 20200305, '2020-03-25', 'USD', 'RV', 1.0, 1889.63, 20200305.0, 'NAD1', 1930580151.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930647183.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 18928.83, 20200314.0, 'NAA8', 1930647183.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930862434.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 22989.93, 20200507.0, 'NAH4', 1930862434.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 5315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR us', 2020.0, 1930690235.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 57189.18, 20200324.0, 'NAA8', 1930690235.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA co', 2020.0, 1930793863.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 3210.48, 20200416.0, 'NAA8', 1930793863.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 5317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960630470.0, '2020-04-25', 20200425, 20200425, '2020-05-06', 'CAD', 'RV', 1.0, 45864.13, 20200426.0, 'CA10', 2960630470.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 5318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930686125.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 53421.13, 20200322.0, 'NAH4', 1930686125.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930761456.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 131040.56, 20200408.0, 'NAA8', 1930761456.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930597845.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 13907.26, 20200305.0, 'NAH4', 1930597845.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930829096.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 9409.91, 20200428.0, 'NAH4', 1930829096.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930617063.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 71342.85, 20200307.0, 'NAH4', 1930617063.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930753812.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 98872.75, 20200406.0, 'NAC6', 1930753812.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930810745.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 37047.6, 20200423.0, 'NAA8', 1930810745.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930835289.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 37488.69, 20200430.0, 'NAA8', 1930835289.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200033653, 'GLOBAL systems', 2020.0, 1930813069.0, '2020-04-24', 20200422, 20200424, '2020-04-24', 'USD', 'RV', 1.0, 18928.84, 20200424.0, 'NAB1', 1930813069.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930677210.0, '2020-03-20', 20200320, 20200320, '2020-03-20', 'USD', 'RV', 1.0, 19003.0, 20200320.0, 'NAX2', 1930677210.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 5328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930676475.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 99.54, 20200321.0, 'NAA8', 1930676475.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corporation', 2020.0, 1930724438.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 1762.43, 20200401.0, 'NAA8', 1930724438.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C corp', 2020.0, 1930782504.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 135122.0, 20200414.0, 'NAA8', 1930782504.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN trust', 2020.0, 1930755257.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 54958.17, 20200406.0, 'NAA8', 1930755257.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F associates', 2020.0, 2960621067.0, '2020-03-16', 20200316, 20200316, '2020-03-27', 'CAD', 'RV', 1.0, 68958.17, 20200317.0, 'CA10', 2960621067.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 5333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER us', 2020.0, 1930808538.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 32208.86, 20200422.0, 'NAA8', 1930808538.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930831210.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 43717.98, 20200428.0, 'NAH4', 1930831210.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930675016.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 737.51, 20200319.0, 'NAA8', 1930675016.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F llc', 2020.0, 1930597306.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 53677.54, 20200303.0, 'NAA8', 1930597306.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA co', 2020.0, 1930708852.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 1695.94, 20200327.0, 'NAA8', 1930708852.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 5338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930669529.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 16311.24, 20200318.0, 'NAA8', 1930669529.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 5339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930822347.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 31179.15, 20200424.0, 'NAH4', 1930822347.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200771157, 'WEIS co', 2020.0, 1930845890.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 31213.87, 20200502.0, 'NAA8', 1930845890.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 5341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930605711.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 57169.01, 20200306.0, 'NAH4', 1930605711.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA associates', 2020.0, 1930717506.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 86611.73, 20200329.0, 'NAA8', 1930717506.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 5343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200418007, 'AM systems', 2020.0, 1930840818.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 33697.73, 20200501.0, 'NAA8', 1930840818.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 5344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930611551.0, '2020-03-06', 20200306, 20200306, '2020-03-06', 'USD', 'RV', 1.0, 3698.2, 20200306.0, 'NAX2', 1930611551.0, 1, '2020-03-12', '0-15 days' ); /* INSERT QUERY NO: 5345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200439158, 'POST associates', 2020.0, 1930784939.0, '2020-04-10', 20200414, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 17916.0, 20200410.0, 'NAA8', 1930784939.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030964, 'NATURA systems', 2020.0, 1930825601.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 863.2, 20200424.0, 'NAA8', 1930825601.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930748591.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 48114.89, 20200405.0, 'NAA8', 1930748591.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930720424.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 2352.97, 20200330.0, 'NAH4', 1930720424.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR trust', 2020.0, 1930870828.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 87796.3, 20200506.0, 'NAA8', 1930870828.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930832830.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 43506.89, 20200429.0, 'NAA8', 1930832830.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930822336.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 18552.08, 20200423.0, 'NAC6', 1930822336.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK co', 2020.0, 1930652863.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 69245.39, 20200315.0, 'NAA8', 1930652863.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930833400.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 6540.07, 20200428.0, 'NAH4', 1930833400.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930751087.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 4220.19, 20200407.0, 'NAH4', 1930751087.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE associates', 2020.0, 1930741108.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 96859.55, 20200403.0, 'NAA8', 1930741108.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930802615.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 25495.67, 20200420.0, 'NAA8', 1930802615.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930716423.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 35954.58, 20200330.0, 'NAH4', 1930716423.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930764425.0, '2020-04-01', 20200408, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 19477.9, 20200401.0, 'NAAX', 1930764425.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M foundation', 2020.0, 1930675437.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 26084.92, 20200320.0, 'NAA8', 1930675437.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930843335.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 943.12, 20200429.0, 'NAH4', 1930843335.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930727424.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 2261.15, 20200402.0, 'NAU5', 1930727424.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 5362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE ', 2020.0, 1930686988.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 12606.59, 20200330.0, 'NAA8', 1930686988.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 5363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO systems', 2020.0, 2960618933.0, '2020-03-06', 20200306, 20200306, '2020-03-16', 'CAD', 'RV', 1.0, 74294.98, 20200306.0, 'CA10', 2960618933.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 5364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930775158.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 96937.8, 20200413.0, 'NAH4', 1930775158.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 5365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930676637.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 28000.75, 20200322.0, 'NAH4', 1930676637.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930646471.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 522.49, 20200313.0, 'NAA8', 1930646471.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO co', 2020.0, 1930782033.0, '2020-04-20', 20200413, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 11119.29, 20200420.0, 'NAA8', 1930782033.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO co', 2020.0, 1930783839.0, '2020-04-16', 20200414, 20200416, '2020-05-06', 'USD', 'RV', 1.0, 10856.48, 20200416.0, 'NAD1', 1930783839.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930802867.0, '2020-04-23', 20200420, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 10982.85, 20200423.0, 'NAA8', 1930802867.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT llc', 2020.0, 1930725457.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 24348.74, 20200331.0, 'NAA8', 1930725457.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930654160.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 47618.39, 20200315.0, 'NAH4', 1930654160.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930802170.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 8663.02, 20200420.0, 'NAH4', 1930802170.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930808772.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 33196.92, 20200421.0, 'NAH4', 1930808772.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930874008.0, '2020-05-06', 20200507, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 49473.78, 20200506.0, 'NAA8', 1930874008.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930620180.0, '2020-03-10', 20200307, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 3995.89, 20200310.0, 'NAH4', 1930620180.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930597567.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 56432.4, 20200305.0, 'NAA8', 1930597567.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930699460.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 52222.76, 20200326.0, 'NAH4', 1930699460.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 5378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930671558.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 35408.2, 20200320.0, 'NAH4', 1930671558.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930673118.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 9307.25, 20200320.0, 'NAH4', 1930673118.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930729643.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 26673.71, 20200401.0, 'NAH4', 1930729643.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 5381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930637689.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 15355.54, 20200312.0, 'NAA8', 1930637689.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 5382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930666140.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 1898.9, 20200320.0, 'NAH4', 1930666140.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930829733.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 60360.71, 20200427.0, 'NAH4', 1930829733.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930715568.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 5807.99, 20200328.0, 'NAH4', 1930715568.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT foundation', 2020.0, 1930832217.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 79289.86, 20200429.0, 'NAA8', 1930832217.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752607, 'IRA HI foundation', 2020.0, 1930571564.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 35456.21, 20200227.0, 'NAA8', 1930571564.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 5387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO corp', 2020.0, 2960625578.0, '2020-04-03', 20200403, 20200403, '2020-04-16', 'CAD', 'RV', 1.0, 24290.69, 20200406.0, 'CA10', 2960625578.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 5388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930798590.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 5625.35, 20200417.0, 'NAH4', 1930798590.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930825482.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 10060.36, 20200427.0, 'NAAX', 1930825482.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930649495.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 18937.83, 20200314.0, 'NAH4', 1930649495.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930577954.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 14776.32, 20200229.0, 'NAA8', 1930577954.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 5392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930842900.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 396.73, 20200429.0, 'NAA8', 1930842900.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930677184.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 8638.31, 20200322.0, 'NAH4', 1930677184.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200978899, 'MBM/PF ', 2020.0, 1930848462.0, '2020-05-01', 20200501, 20200501, '2020-05-21', 'USD', 'RV', 1.0, 34410.24, 20200501.0, 'NAD1', 1930848462.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930728087.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 16039.41, 20200402.0, 'NAH4', 1930728087.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930766865.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 69489.1, 20200409.0, 'NAA8', 1930766865.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930795687.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 45346.03, 20200417.0, 'NAA8', 1930795687.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930624014.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 7455.68, 20200309.0, 'NAAX', 1930624014.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER systems', 2020.0, 1930730394.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 49420.17, 20200401.0, 'NAA8', 1930730394.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930859974.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 17473.9, 20200505.0, 'NAH4', 1930859974.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 5401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO corp', 2020.0, 1930798143.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 56604.58, 20200417.0, 'NAA8', 1930798143.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 5402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corporation', 2020.0, 1930818644.0, '2020-04-22', 20200423, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 145284.93, 20200422.0, 'NAA8', 1930818644.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930732630.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 2373.96, 20200403.0, 'NAH4', 1930732630.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR trust', 2020.0, 1930738311.0, '2020-04-07', 20200402, 20200407, '2020-05-09', 'USD', 'RV', 1.0, 5828.4, 20200407.0, 'NA32', 1930738311.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200956366, 'RICH systems', 2020.0, 1930910384.0, '2020-05-21', 20200516, 20200521, '2020-06-05', 'USD', 'RV', 1.0, 42360.0, 20200521.0, 'NAA8', 1930910384.0, 1, '2020-06-03', 'early' ); /* INSERT QUERY NO: 5406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA systems', 2020.0, 1930782783.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 8789.51, 20200413.0, 'NAA8', 1930782783.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER llc', 2020.0, 1930723623.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 8298.64, 20200402.0, 'NAA8', 1930723623.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960622454.0, '2020-03-20', 20200320, 20200320, '2020-03-31', 'CAD', 'RV', 1.0, 109073.67, 20200321.0, 'CA10', 2960622454.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 5409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930743630.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 114429.79, 20200403.0, 'NAC6', 1930743630.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930828278.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 132.72, 20200426.0, 'NAA8', 1930828278.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR llc', 2020.0, 1930856653.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 71561.89, 20200507.0, 'NAA8', 1930856653.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930724682.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 6540.07, 20200331.0, 'NAH4', 1930724682.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930682269.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 776.58, 20200322.0, 'NAH4', 1930682269.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103470, 'D\'ALB llc', 2020.0, 1991839975.0, '2020-03-12', 20200312, 20200312, '2020-04-11', 'USD', 'RV', 1.0, 2174.9, 20200312.0, 'NAVE', 1991839975.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 5415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corp', 2020.0, 1930811475.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 955.78, 20200416.0, 'NAM4', 1930811475.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930863340.0, '2020-05-06', 20200506, 20200506, '2020-05-24', 'USD', 'RV', 1.0, 1827.8, 20200501.0, 'NAM4', 1930863340.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 5417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930783294.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 20818.26, 20200416.0, 'NAH4', 1930783294.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930755072.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 1898.2, 20200407.0, 'NAH4', 1930755072.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930884236.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 42242.48, 20200509.0, 'NAH4', 1930884236.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 5420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930598332.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 18994.76, 20200304.0, 'NAH4', 1930598332.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 5421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930772177.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 377.66, 20200411.0, 'NAH4', 1930772177.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930729241.0, '2020-04-04', 20200401, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 40904.38, 20200404.0, 'NAH4', 1930729241.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA us', 2020.0, 1930627696.0, '2020-03-10', 20200310, 20200310, '2020-03-08', 'USD', 'RV', 1.0, 2285.55, 20200301.0, 'NAM1', 1930627696.0, 1, '2020-03-05', 'early' ); /* INSERT QUERY NO: 5424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930665934.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 43772.17, 20200317.0, 'NAC6', 1930665934.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 5425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA trust', 2020.0, 1930599091.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 561.72, 20200301.0, 'NAM2', 1930599091.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 5426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930708905.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 31880.44, 20200327.0, 'NAH4', 1930708905.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930635509.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 1584.2, 20200311.0, 'NAH4', 1930635509.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W trust', 2020.0, 1930800824.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 37503.82, 20200420.0, 'NAC6', 1930800824.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104409, 'LOB corp', 2020.0, 2960624481.0, '2020-03-27', 20200327, 20200327, '2020-04-09', 'CAD', 'RV', 1.0, 92119.35, 20200330.0, 'CA10', 2960624481.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 5430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200149567, 'RESER foundation', 2020.0, 1930719970.0, '2020-04-01', 20200330, 20200401, '2020-05-16', 'USD', 'RV', 1.0, 5632.38, 20200401.0, 'NABG', 1930719970.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930581439.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 52927.45, 20200301.0, 'NAH4', 1930581439.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS ', 2020.0, 1930636634.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 1046.32, 20200310.0, 'NAA8', 1930636634.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930819702.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 56061.12, 20200425.0, 'NAH4', 1930819702.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930732562.0, '2020-04-02', 20200402, 20200402, '2020-04-22', 'USD', 'RV', 1.0, 69428.5, 20200402.0, 'NAD1', 1930732562.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105678, 'SAPUTO llc', 2020.0, 2960630791.0, '2020-05-03', 20200504, 20200503, '2020-05-16', 'CAD', 'RV', 1.0, 19589.4, 20200506.0, 'CA10', 2960630791.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 5436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930694464.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 15717.23, 20200325.0, 'NAH4', 1930694464.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 5437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE in', 2020.0, 1930659851.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 12154.39, 20200317.0, 'NAA8', 1930659851.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930570116.0, '2020-02-27', 20200225, 20200227, '2020-04-01', 'USD', 'RV', 1.0, 24119.43, 20200227.0, 'NAAW', 1930570116.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930725053.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 57814.77, 20200401.0, 'NAU5', 1930725053.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 5440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930815032.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 20326.41, 20200423.0, 'NAH4', 1930815032.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC systems', 2020.0, 1930716365.0, '2020-03-25', 20200328, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 33435.96, 20200325.0, 'NAA8', 1930716365.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR us', 2020.0, 1930655780.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 8546.58, 20200318.0, 'NAA8', 1930655780.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 5443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930774549.0, '2020-04-06', 20200410, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 277.82, 20200406.0, 'NAA8', 1930774549.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200776463, 'KROGE llc', 2020.0, 1930688593.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 131411.98, 20200323.0, 'NAA8', 1930688593.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER llc', 2020.0, 1930854640.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 32208.19, 20200504.0, 'NAA8', 1930854640.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 5446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL associates', 2020.0, 1930565469.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 4416.91, 20200303.0, 'NAA8', 1930565469.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960616971.0, '2020-02-29', 20200229, 20200229, '2020-03-13', 'CAD', 'RV', 1.0, 115773.49, 20200303.0, 'CA10', 2960616971.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 5448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930571766.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 24145.01, 20200227.0, 'NAC6', 1930571766.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 5449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930720003.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 9618.69, 20200330.0, 'NAA8', 1930720003.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F co', 2020.0, 2960630468.0, '2020-04-25', 20200425, 20200425, '2020-05-07', 'CAD', 'RV', 1.0, 32787.49, 20200427.0, 'CA10', 2960630468.0, 1, '2020-05-11', '0-15 days' ); /* INSERT QUERY NO: 5451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG trust', 2020.0, 1930802357.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 21154.7, 20200420.0, 'NAA8', 1930802357.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960623558.0, '2020-03-26', 20200326, 20200326, '2020-04-05', 'CAD', 'RV', 1.0, 121020.72, 20200326.0, 'CA10', 2960623558.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 5453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930581503.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 21162.84, 20200301.0, 'NAH4', 1930581503.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930756700.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 49131.09, 20200406.0, 'NAAX', 1930756700.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100021540, 'MASTER corp', 2020.0, 1930676531.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'USD', 'RV', 1.0, 3173.95, 20200320.0, 'NA10', 1930676531.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930724340.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 158.32, 20200331.0, 'NAA8', 1930724340.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200200412, 'DRIS trust', 2020.0, 1930752916.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 2723.58, 20200408.0, 'NAA8', 1930752916.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930692156.0, '2020-03-24', 20200324, 20200324, '2020-03-26', 'USD', 'RV', 1.0, 1356.86, 20200316.0, 'NAM2', 1930692156.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY in', 2020.0, 1930724043.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 48031.17, 20200401.0, 'NAC6', 1930724043.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930763756.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 43069.5, 20200408.0, 'NAH4', 1930763756.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930773391.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 18155.57, 20200410.0, 'NAH4', 1930773391.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930652514.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 2373.96, 20200314.0, 'NAH4', 1930652514.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930637277.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 92294.88, 20200312.0, 'NAA8', 1930637277.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930766412.0, '2020-04-13', 20200408, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 944.64, 20200413.0, 'NAA8', 1930766412.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 5465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930857423.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 42645.12, 20200504.0, 'NAA8', 1930857423.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 5466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103409, 'BUTTE associates', 2020.0, 1991838962.0, '2020-03-02', 20200227, 20200302, '2020-04-01', 'USD', 'RV', 1.0, 840.81, 20200302.0, 'NAVE', 1991838962.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 5467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930664897.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 55533.6, 20200318.0, 'NAA8', 1930664897.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT co', 2020.0, 1930647283.0, '2020-03-15', 20200313, 20200315, '2020-04-19', 'USD', 'RV', 1.0, 21764.01, 20200315.0, 'NAG2', 1930647283.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - llc', 2020.0, 1930783780.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 70651.21, 20200415.0, 'NAA8', 1930783780.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930705417.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 64458.45, 20200327.0, 'NAC6', 1930705417.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930857523.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 19751.0, 20200506.0, 'NAH4', 1930857523.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930886408.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 5601.67, 20200511.0, 'NAH4', 1930886408.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 5473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corp', 2020.0, 1930631482.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 926.19, 20200310.0, 'NAA8', 1930631482.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930654957.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21195.64, 20200316.0, 'NAH4', 1930654957.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930692508.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 555.51, 20200324.0, 'NAA8', 1930692508.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M trust', 2020.0, 1930852433.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 66806.83, 20200505.0, 'NAA8', 1930852433.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930818824.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 9924.17, 20200423.0, 'NAA8', 1930818824.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE co', 2020.0, 1930594886.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 75692.01, 20200304.0, 'NAA8', 1930594886.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930685310.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 471.56, 20200321.0, 'NAH4', 1930685310.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930717550.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 14068.45, 20200330.0, 'NAC6', 1930717550.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930882689.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 11054.7, 20200510.0, 'NAH4', 1930882689.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 5482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930600081.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 6147.83, 20200305.0, 'NAU5', 1930600081.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 5483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930594045.0, '2020-03-06', 20200303, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 20516.62, 20200306.0, 'NAAX', 1930594045.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 5484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB in', 2020.0, 2960624271.0, '2020-03-26', 20200326, 20200326, '2020-04-07', 'CAD', 'RV', 1.0, 238420.36, 20200328.0, 'CA10', 2960624271.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 5485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103480, 'PRIC ', 2020.0, 1991840813.0, '2020-03-13', 20200311, 20200313, '2020-04-27', 'USD', 'RV', 1.0, 30523.94, 20200313.0, 'NAVF', 1991840813.0, 1, '2020-05-02', '0-15 days' ); /* INSERT QUERY NO: 5486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT systems', 2020.0, 1930739263.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 101395.69, 20200403.0, 'NAA8', 1930739263.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960623910.0, '2020-03-24', 20200324, 20200324, '2020-04-05', 'CAD', 'RV', 1.0, 26091.03, 20200326.0, 'CA10', 2960623910.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 5488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930779085.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 35258.29, 20200415.0, 'NAH4', 1930779085.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 5489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930822575.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 13733.04, 20200426.0, 'NAA8', 1930822575.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930850375.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 26110.78, 20200502.0, 'NAH4', 1930850375.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL in', 2020.0, 1930793903.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 77479.4, 20200416.0, 'NAA8', 1930793903.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 5492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930851852.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 1992.12, 20200503.0, 'NAH4', 1930851852.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200580232, 'INTERR llc', 2020.0, 1930732391.0, '2020-04-01', 20200402, 20200401, '2020-04-11', 'USD', 'RV', 1.0, 30338.0, 20200401.0, 'NA10', 1930732391.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 5494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200729290, 'KROGER ', 2020.0, 1930686911.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 108240.91, 20200322.0, 'NAA8', 1930686911.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930843335.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 943.12, 20200429.0, 'NAH4', 1930843335.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930717786.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 5275.74, 20200330.0, 'NAH4', 1930717786.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930881929.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 31920.32, 20200509.0, 'NAH4', 1930881929.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 5498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930828457.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 321.54, 20200427.0, 'NAA8', 1930828457.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930583048.0, '2020-02-29', 20200229, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 3191.4, 20200229.0, 'NAGD', 1930583048.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA systems', 2020.0, 1930654642.0, '2020-03-17', 20200316, 20200317, '2020-04-16', 'USD', 'RV', 1.0, 41508.61, 20200317.0, 'NAD5', 1930654642.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS ', 2020.0, 1930809980.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 508.04, 20200423.0, 'NAA8', 1930809980.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930737988.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 79820.77, 20200404.0, 'NAA8', 1930737988.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930830284.0, '2020-04-27', 20200427, 20200427, '2020-05-17', 'USD', 'RV', 1.0, 28521.8, 20200427.0, 'NA84', 1930830284.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 5504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200494781, 'TERI NI in', 2020.0, 1930630062.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 41451.23, 20200311.0, 'NAA8', 1930630062.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M trust', 2020.0, 1930660262.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 25104.95, 20200318.0, 'NAA8', 1930660262.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 5506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930722971.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 17290.3, 20200331.0, 'NAH4', 1930722971.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS corp', 2020.0, 1930586034.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 88203.78, 20200302.0, 'NAA8', 1930586034.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930728086.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 61966.51, 20200402.0, 'NAH4', 1930728086.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930781959.0, '2020-04-16', 20200414, 20200416, '2020-06-20', 'USD', 'RV', 1.0, 168.0, 20200416.0, 'NAGD', 1930781959.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 5510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104277, 'WALLA llc', 2020.0, 2960628816.0, '2020-04-13', 20200414, 20200413, '2020-05-02', 'CAD', 'RV', 1.0, 2592.0, 20200422.0, 'CA10', 2960628816.0, 1, '2020-05-09', '0-15 days' ); /* INSERT QUERY NO: 5511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930882481.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 35332.17, 20200509.0, 'NAH4', 1930882481.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 5512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718164, 'JC F corporation', 2020.0, 1930832557.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 17519.05, 20200429.0, 'NAA8', 1930832557.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930777018.0, '2020-04-10', 20200410, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 3112.51, 20200410.0, 'NAGD', 1930777018.0, 1, '2020-06-10', 'early' ); /* INSERT QUERY NO: 5514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930682073.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 21546.5, 20200323.0, 'NAA8', 1930682073.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930655573.0, '2020-03-14', 20200316, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 737.89, 20200314.0, 'NAA8', 1930655573.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930747226.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 46808.39, 20200403.0, 'NAH4', 1930747226.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930877712.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 19159.66, 20200508.0, 'NAA8', 1930877712.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 5518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930797739.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 8632.43, 20200417.0, 'NAH4', 1930797739.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930855504.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 5932.07, 20200504.0, 'NAH4', 1930855504.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 5520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M co', 2020.0, 2960617432.0, '2020-02-28', 20200228, 20200228, '2020-03-10', 'CAD', 'RV', 1.0, 7124.93, 20200229.0, 'CA10', 2960617432.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 5521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960632680.0, '2020-05-11', 20200511, 20200511, '2020-05-21', 'CAD', 'RV', 1.0, 38355.08, 20200511.0, 'CA10', 2960632680.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 5522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930857235.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 571.62, 20200505.0, 'NAA8', 1930857235.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 5523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW foundation', 2020.0, 1930626260.0, '2020-03-09', 20200309, 20200309, '2020-05-13', 'USD', 'RV', 1.0, 26665.26, 20200309.0, 'NAGD', 1930626260.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F in', 2020.0, 1930673488.0, '2020-03-23', 20200319, 20200323, '2020-03-23', 'USD', 'RV', 1.0, 1408.0, 20200323.0, 'NAX2', 1930673488.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 5525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930652917.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 32.36, 20200315.0, 'NAH4', 1930652917.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW ', 2020.0, 1930610595.0, '2020-03-05', 20200306, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 13757.25, 20200305.0, 'NAA8', 1930610595.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104229, 'A & W F co', 2020.0, 2960632428.0, '2020-05-03', 20200503, 20200503, '2020-05-15', 'CAD', 'RV', 1.0, 6834.0, 20200505.0, 'CA10', 2960632428.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 5528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930683624.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 3270.04, 20200321.0, 'NAH4', 1930683624.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797452, 'US llc', 2020.0, 1930601465.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 47231.15, 20200304.0, 'NAA8', 1930601465.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930618574.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 70857.72, 20200309.0, 'NAH4', 1930618574.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 5531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930620578.0, '2020-03-08', 20200307, 20200308, '2020-05-12', 'USD', 'RV', 1.0, 3046.06, 20200308.0, 'NAGD', 1930620578.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930806499.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 1898.9, 20200421.0, 'NAH4', 1930806499.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930620344.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 53063.89, 20200308.0, 'NAH4', 1930620344.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797452, 'US systems', 2020.0, 1930803404.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 49568.27, 20200420.0, 'NAA8', 1930803404.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930772898.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 6628.31, 20200411.0, 'NAH4', 1930772898.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100033268, 'NICHOL systems', 2020.0, 1930743118.0, '2020-04-07', 20200403, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 28371.2, 20200407.0, 'NAA8', 1930743118.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930643343.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 35334.47, 20200313.0, 'NAH4', 1930643343.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930774600.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 93247.99, 20200411.0, 'NAA8', 1930774600.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930850936.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 1119.38, 20200504.0, 'NAH4', 1930850936.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 5540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930830449.0, '2020-04-27', 20200427, 20200427, '2020-05-31', 'USD', 'RV', 1.0, 14004.1, 20200427.0, 'NAAW', 1930830449.0, 1, '2020-05-25', 'early' ); /* INSERT QUERY NO: 5541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100026809, 'PRES llc', 2020.0, 1930858065.0, '2020-05-05', 20200505, 20200505, '2020-05-15', 'USD', 'RV', 1.0, 20125.0, 20200505.0, 'NA10', 1930858065.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140103278, 'COS ', 2020.0, 1991840431.0, '2020-03-15', 20200311, 20200315, '2020-05-14', 'USD', 'RV', 1.0, 32920.37, 20200315.0, 'NAUZ', 1991840431.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 5543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corporation', 2020.0, 1930818977.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 12954.35, 20200416.0, 'NAM1', 1930818977.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100057168, 'CO us', 2020.0, 1930717659.0, '2020-04-02', 20200329, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 107695.99, 20200402.0, 'NAA8', 1930717659.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930814559.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 42142.62, 20200423.0, 'NAH4', 1930814559.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930837710.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 2169.37, 20200428.0, 'NAH4', 1930837710.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104429, 'COSTCO corp', 2020.0, 2960621580.0, '2020-03-18', 20200318, 20200318, '2020-03-30', 'CAD', 'RV', 1.0, 6604.15, 20200320.0, 'CA10', 2960621580.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 5548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S in', 2020.0, 1930678761.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 118729.51, 20200322.0, 'NAA8', 1930678761.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930681334.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 6292.36, 20200322.0, 'NAH4', 1930681334.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH co', 2020.0, 1930670442.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 9559.98, 20200319.0, 'NAC6', 1930670442.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930642748.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 32715.47, 20200312.0, 'NAAX', 1930642748.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930713178.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 138.33, 20200327.0, 'NAH4', 1930713178.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C corp', 2020.0, 1930832416.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 1865.33, 20200428.0, 'NAA8', 1930832416.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE associates', 2020.0, 1930772072.0, '2020-04-14', 20200409, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 4404.08, 20200414.0, 'NAA8', 1930772072.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930714799.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 3703.19, 20200328.0, 'NAH4', 1930714799.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930884083.0, '2020-05-11', 20200510, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 22549.86, 20200511.0, 'NAH4', 1930884083.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 5557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930796260.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 3322.28, 20200418.0, 'NAH4', 1930796260.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA systems', 2020.0, 1930573668.0, '2020-02-28', 20200226, 20200228, '2020-04-13', 'USD', 'RV', 1.0, 109335.69, 20200228.0, 'NAWP', 1930573668.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 5559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930596163.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 23538.69, 20200304.0, 'NAH4', 1930596163.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 5560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC llc', 2020.0, 1930713505.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 1410.5, 20200329.0, 'NAA8', 1930713505.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930617594.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 22575.08, 20200307.0, 'NAH4', 1930617594.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE associates', 2020.0, 1930768625.0, '2020-04-16', 20200409, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 3899.95, 20200416.0, 'NAA8', 1930768625.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 5563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200458131, 'TIMES llc', 2020.0, 1930759824.0, '2020-04-14', 20200407, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 2187.39, 20200414.0, 'NAA8', 1930759824.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930580976.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 57048.33, 20200229.0, 'NAH4', 1930580976.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL associates', 2020.0, 1930764000.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 95360.04, 20200409.0, 'NAA8', 1930764000.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104429, 'COSTCO us', 2020.0, 2960623320.0, '2020-03-23', 20200323, 20200323, '2020-04-02', 'CAD', 'RV', 1.0, 42580.61, 20200323.0, 'CA10', 2960623320.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 5567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930859088.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 14070.44, 20200506.0, 'NAH4', 1930859088.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930831102.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 30711.03, 20200428.0, 'NAH4', 1930831102.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930719511.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 2209.18, 20200330.0, 'NAH4', 1930719511.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO llc', 2020.0, 1930702298.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 17093.83, 20200325.0, 'NAA8', 1930702298.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW foundation', 2020.0, 1930592316.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 135253.97, 20200302.0, 'NAA8', 1930592316.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F in', 2020.0, 1930646260.0, '2020-03-13', 20200313, 20200313, '2020-04-02', 'USD', 'RV', 1.0, 88540.01, 20200313.0, 'NAD1', 1930646260.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH associates', 2020.0, 1930710921.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 72701.42, 20200327.0, 'NAA8', 1930710921.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930639849.0, '2020-03-18', 20200311, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 9261.12, 20200318.0, 'NAA8', 1930639849.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930619155.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 14411.32, 20200308.0, 'NAH4', 1930619155.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI co', 2020.0, 1930625377.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 58371.7, 20200310.0, 'NAA8', 1930625377.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO foundation', 2020.0, 2960619507.0, '2020-03-11', 20200311, 20200311, '2020-03-22', 'CAD', 'RV', 1.0, 152849.54, 20200312.0, 'CA10', 2960619507.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 5578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930584244.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 1561.81, 20200229.0, 'NAA8', 1930584244.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 5579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200689451, 'PORK in', 2020.0, 1930876395.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 116921.52, 20200508.0, 'NAA8', 1930876395.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 5580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW co', 2020.0, 1930604250.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 56909.9, 20200305.0, 'NAA8', 1930604250.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930600022.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 15444.68, 20200306.0, 'NAH4', 1930600022.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930716322.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 242.09, 20200329.0, 'NAA8', 1930716322.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930833359.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 91982.62, 20200428.0, 'NAC6', 1930833359.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 5584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100054867, 'CTI A systems', 2020.0, 1930573811.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 98338.05, 20200228.0, 'NAA8', 1930573811.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 5585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200697207, 'WA ', 2020.0, 1930821764.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 17094.1, 20200424.0, 'NAA8', 1930821764.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930893428.0, '2020-05-12', 20200512, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 28212.01, 20200512.0, 'NAH4', 1930893428.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 5587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC trust', 2020.0, 2960622492.0, '2020-03-23', 20200323, 20200323, '2020-04-10', 'CAD', 'RV', 1.0, 34902.63, 20200331.0, 'CA10', 2960622492.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 5588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930769010.0, '2020-04-13', 20200409, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 2194.5, 20200413.0, 'NAA8', 1930769010.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 5589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930611540.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 1414.68, 20200306.0, 'NAH4', 1930611540.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930837517.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 776.41, 20200428.0, 'NAA8', 1930837517.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930714543.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 14743.73, 20200329.0, 'NAH4', 1930714543.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930828337.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 15773.73, 20200426.0, 'NAH4', 1930828337.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930692098.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 142.92, 20200325.0, 'NAA8', 1930692098.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS corp', 2020.0, 1930716105.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 96838.78, 20200329.0, 'NAA8', 1930716105.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930653260.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 36646.27, 20200317.0, 'NAH4', 1930653260.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960626162.0, '2020-04-02', 20200402, 20200402, '2020-04-12', 'CAD', 'RV', 1.0, 56128.98, 20200402.0, 'CA10', 2960626162.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 5597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA co', 2020.0, 1930803030.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 11809.29, 20200421.0, 'NAA8', 1930803030.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200775094, 'SAVE M in', 2020.0, 1930859492.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 65716.93, 20200505.0, 'NAA8', 1930859492.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 5599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930752375.0, '2020-04-06', 20200406, 20200406, '2020-06-10', 'USD', 'RV', 1.0, 2790.0, 20200406.0, 'NAGD', 1930752375.0, 1, '2020-06-06', 'early' ); /* INSERT QUERY NO: 5600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200571849, 'US trust', 2020.0, 1930671936.0, '2020-03-19', 20200319, 20200319, '2020-04-08', 'USD', 'RV', 1.0, 10741.55, 20200319.0, 'NAD1', 1930671936.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930739430.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 2373.96, 20200404.0, 'NAH4', 1930739430.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE trust', 2020.0, 1930802893.0, '2020-04-08', 20200420, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 48129.39, 20200408.0, 'NAGD', 1930802893.0, 1, '2020-06-06', 'early' ); /* INSERT QUERY NO: 5603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930624223.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 93769.94, 20200309.0, 'NAA8', 1930624223.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 5604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930718664.0, '2020-04-02', 20200330, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 13114.9, 20200402.0, 'NAAX', 1930718664.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200704045, 'RA us', 2020.0, 1930872024.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 491.71, 20200506.0, 'NAA8', 1930872024.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 5606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930731222.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 5862.07, 20200403.0, 'NAAX', 1930731222.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 5607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW co', 2020.0, 1930704143.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 43019.47, 20200325.0, 'NAA8', 1930704143.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930774061.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 33563.72, 20200409.0, 'NAH4', 1930774061.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 5609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC systems', 2020.0, 1930650542.0, '2020-03-19', 20200313, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 10032.0, 20200319.0, 'NAA8', 1930650542.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930630526.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 68585.45, 20200310.0, 'NAC6', 1930630526.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930623504.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 113292.1, 20200308.0, 'NAA8', 1930623504.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 5612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corp', 2020.0, 1930817176.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 2244.1, 20200424.0, 'NAA8', 1930817176.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930583236.0, '2020-03-06', 20200229, 20200306, '2020-05-10', 'USD', 'RV', 1.0, 2263.56, 20200306.0, 'NAGD', 1930583236.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200609718, 'FR corp', 2020.0, 1930582014.0, '2020-02-28', 20200228, 20200228, '2020-03-09', 'USD', 'RV', 1.0, 12312.0, 20200228.0, 'NA10', 1930582014.0, 1, '2020-03-01', 'early' ); /* INSERT QUERY NO: 5615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH ', 2020.0, 1930651441.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 113541.72, 20200314.0, 'NAA8', 1930651441.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 5616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104440, 'SO corp', 2020.0, 2960619869.0, '2020-03-12', 20200312, 20200312, '2020-03-26', 'CAD', 'RV', 1.0, 41998.5, 20200316.0, 'CA10', 2960619869.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 5617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930761527.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 48502.42, 20200408.0, 'NAH4', 1930761527.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930747898.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 64786.86, 20200404.0, 'NAA8', 1930747898.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER co', 2020.0, 1930627806.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 18174.92, 20200310.0, 'NAA8', 1930627806.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE associates', 2020.0, 1930720470.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 14031.97, 20200331.0, 'NAA8', 1930720470.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER ', 2020.0, 1930693659.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 19436.31, 20200325.0, 'NAA8', 1930693659.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930598019.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 9855.38, 20200304.0, 'NAC6', 1930598019.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO trust', 2020.0, 1930713842.0, '2020-04-03', 20200328, 20200403, '2020-04-23', 'USD', 'RV', 1.0, 8309.62, 20200403.0, 'NAD1', 1930713842.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS co', 2020.0, 1930704358.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 1730.66, 20200325.0, 'NAA8', 1930704358.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930704262.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 37195.3, 20200327.0, 'NAA8', 1930704262.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M ', 2020.0, 1930854616.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 53574.98, 20200503.0, 'NAA8', 1930854616.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 5627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930577554.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 31084.77, 20200228.0, 'NAH4', 1930577554.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 5628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930671424.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 16308.45, 20200320.0, 'NAH4', 1930671424.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930726061.0, '2020-04-01', 20200331, 20200401, '2020-06-05', 'USD', 'RV', 1.0, 955.58, 20200401.0, 'NAGD', 1930726061.0, 1, '2020-06-03', 'early' ); /* INSERT QUERY NO: 5630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930581558.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 7713.07, 20200229.0, 'NAH4', 1930581558.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS trust', 2020.0, 1930548420.0, '2020-02-27', 20200220, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 4740.75, 20200227.0, 'NAA8', 1930548420.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 5632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930776914.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 79949.81, 20200412.0, 'NAH4', 1930776914.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103713, 'PRIM llc', 2020.0, 1991841541.0, '2020-04-12', 20200408, 20200412, '2020-05-12', 'USD', 'RV', 1.0, 10092.6, 20200412.0, 'NAVE', 1991841541.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 5634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT systems', 2020.0, 1930718072.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 18627.55, 20200329.0, 'NAU5', 1930718072.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 5635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F foundation', 2020.0, 2960619942.0, '2020-03-10', 20200310, 20200310, '2020-03-20', 'CAD', 'RV', 1.0, 74795.73, 20200310.0, 'CA10', 2960619942.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 5636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030443, 'GLACIE us', 2020.0, 1930794450.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 4310.37, 20200416.0, 'NAA8', 1930794450.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG in', 2020.0, 1930878057.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 4989.04, 20200509.0, 'NAA8', 1930878057.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 5638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930750040.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 4966.97, 20200405.0, 'NAH4', 1930750040.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930708931.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 17033.43, 20200328.0, 'NAA8', 1930708931.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960621926.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 42716.78, 20200318.0, 'CA10', 2960621926.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 5641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR ', 2020.0, 1930730303.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 2548.26, 20200401.0, 'NAA8', 1930730303.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930789758.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 21334.27, 20200416.0, 'NAH4', 1930789758.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742791, 'QUI co', 2020.0, 1930774925.0, '2020-04-14', 20200410, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 42981.3, 20200414.0, 'NAA8', 1930774925.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO associates', 2020.0, 1930660703.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 181.76, 20200316.0, 'NAA8', 1930660703.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930609902.0, '2020-03-05', 20200305, 20200305, '2020-04-08', 'USD', 'RV', 1.0, 6623.16, 20200305.0, 'NAAW', 1930609902.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ llc', 2020.0, 1930637596.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 74825.6, 20200311.0, 'NAA8', 1930637596.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB ', 2020.0, 2960632849.0, '2020-05-06', 20200506, 20200506, '2020-05-18', 'CAD', 'RV', 1.0, 4721.76, 20200508.0, 'CA10', 2960632849.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 5648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930756611.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 36014.7, 20200408.0, 'NAH4', 1930756611.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 5649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO in', 2020.0, 2960627977.0, '2020-04-20', 20200420, 20200420, '2020-05-02', 'CAD', 'RV', 1.0, 2909.43, 20200422.0, 'CA10', 2960627977.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 5650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT foundation', 2020.0, 1930710230.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 87481.62, 20200326.0, 'NAU5', 1930710230.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 5651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930624729.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 11746.56, 20200310.0, 'NAU5', 1930624729.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930654111.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 7664.54, 20200316.0, 'NAA8', 1930654111.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE us', 2020.0, 1930814485.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 25028.79, 20200422.0, 'NAA8', 1930814485.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS ', 2020.0, 1930642217.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 57106.06, 20200311.0, 'NAA8', 1930642217.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930838457.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 45860.54, 20200430.0, 'NAH4', 1930838457.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 5656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930856456.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 213.21, 20200505.0, 'NAH4', 1930856456.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930773766.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1521.34, 20200409.0, 'NAA8', 1930773766.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0100043903, 'CARIB systems', 2020.0, 1990571715.0, '2020-03-10', 20200310, 20200310, '2020-04-14', 'USD', 'RV', 1.0, 12072.98, 20200310.0, 'NAG2', 1990571715.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 5659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930686276.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 43234.88, 20200323.0, 'NAA8', 1930686276.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960623108.0, '2020-03-19', 20200319, 20200319, '2020-04-01', 'CAD', 'RV', 1.0, 105999.51, 20200322.0, 'CA10', 2960623108.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 5661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200725393, 'PERFOR co', 2020.0, 1930719077.0, '2020-03-29', 20200330, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 34122.07, 20200329.0, 'NAA8', 1930719077.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960626162.0, '2020-04-02', 20200402, 20200402, '2020-04-12', 'CAD', 'RV', 1.0, 56128.98, 20200402.0, 'CA10', 2960626162.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 5663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER in', 2020.0, 1930672798.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 16573.23, 20200320.0, 'NAA8', 1930672798.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100050556, 'Progres corporation', 2020.0, 1991838694.0, '2020-03-02', 20200227, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 6688.9, 20200302.0, 'NAVD', 1991838694.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 5665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930717116.0, '2020-03-28', 20200329, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 61683.0, 20200328.0, 'NAA8', 1930717116.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M llc', 2020.0, 2960631557.0, '2020-05-05', 20200505, 20200505, '2020-05-15', 'CAD', 'RV', 1.0, 61670.76, 20200505.0, 'CA10', 2960631557.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 5667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU in', 2020.0, 1930837426.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 55524.48, 20200428.0, 'NAA8', 1930837426.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corporation', 2020.0, 1930690622.0, '2020-03-24', 20200324, 20200324, '2020-03-26', 'USD', 'RV', 1.0, 6349.1, 20200316.0, 'NAM2', 1930690622.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 5669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET ', 2020.0, 1930646212.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 177.81, 20200312.0, 'NAA8', 1930646212.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930859124.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 15366.96, 20200506.0, 'NAH4', 1930859124.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930623401.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 13123.54, 20200309.0, 'NAH4', 1930623401.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 5672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930854670.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 9742.45, 20200504.0, 'NAH4', 1930854670.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 5673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE corp', 2020.0, 1930823542.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 106600.07, 20200426.0, 'NAA8', 1930823542.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930685465.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 45440.71, 20200323.0, 'NAH4', 1930685465.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930853287.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 36570.0, 20200503.0, 'NAH4', 1930853287.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930855253.0, '2020-05-06', 20200503, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 6673.84, 20200506.0, 'NAH4', 1930855253.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930741006.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 24079.25, 20200405.0, 'NAH4', 1930741006.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930687584.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 31364.83, 20200323.0, 'NAH4', 1930687584.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930714152.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 12135.33, 20200328.0, 'NAH4', 1930714152.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799538, 'UNITE ', 2020.0, 1930714691.0, '2020-03-28', 20200328, 20200328, '2020-06-01', 'USD', 'RV', 1.0, 4839.29, 20200328.0, 'NAGD', 1930714691.0, 1, '2020-05-29', 'early' ); /* INSERT QUERY NO: 5681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930863311.0, '2020-05-06', 20200506, 20200506, '2020-05-11', 'USD', 'RV', 1.0, 10992.33, 20200501.0, 'NAM2', 1930863311.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930687101.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 23685.22, 20200324.0, 'NAH4', 1930687101.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930681300.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 1329.23, 20200320.0, 'NAH4', 1930681300.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930621475.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 103.47, 20200308.0, 'NAH4', 1930621475.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH foundation', 2020.0, 1930639652.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 53612.0, 20200313.0, 'NAA8', 1930639652.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO foundation', 2020.0, 2960626790.0, '2020-04-06', 20200406, 20200406, '2020-04-25', 'CAD', 'RV', 1.0, 46619.28, 20200415.0, 'CA10', 2960626790.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 5687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930654879.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 6663.73, 20200316.0, 'NAH4', 1930654879.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930683321.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 14081.31, 20200321.0, 'NAA8', 1930683321.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B llc', 2020.0, 1930873181.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 418.29, 20200507.0, 'NAA8', 1930873181.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 5690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG associates', 2020.0, 1930842678.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 18691.88, 20200501.0, 'NAA8', 1930842678.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 5691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930723022.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 52954.24, 20200330.0, 'NAH4', 1930723022.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100050962, 'HIGHLAN trust', 2020.0, 1930763895.0, '2020-04-08', 20200408, 20200408, '2020-05-08', 'USD', 'RV', 1.0, 5880.0, 20200408.0, 'NAD5', 1930763895.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930647560.0, '2020-03-16', 20200313, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 26774.68, 20200316.0, 'NAH4', 1930647560.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930843164.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 15801.84, 20200501.0, 'NAH4', 1930843164.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 5695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200447006, 'ANTONIO corporation', 2020.0, 1930861109.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 29993.09, 20200506.0, 'NAA8', 1930861109.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 5696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE in', 2020.0, 1930642538.0, '2020-03-11', 20200312, 20200311, '2020-05-15', 'USD', 'RV', 1.0, 1415.43, 20200311.0, 'NAGD', 1930642538.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 5697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200768357, 'MARC associates', 2020.0, 1930827834.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 97589.0, 20200427.0, 'NAA8', 1930827834.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930843497.0, '2020-04-30', 20200430, 20200430, '2020-05-20', 'USD', 'RV', 1.0, 17576.52, 20200430.0, 'NAD1', 1930843497.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930679095.0, '2020-03-23', 20200320, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 14865.39, 20200323.0, 'NAH4', 1930679095.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 5700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930671908.0, '2020-03-21', 20200319, 20200321, '2020-05-25', 'USD', 'RV', 1.0, 7914.92, 20200321.0, 'NAGD', 1930671908.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 5701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA in', 2020.0, 1930732360.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 12681.7, 20200401.0, 'NAA8', 1930732360.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930592552.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 99091.71, 20200304.0, 'NAC6', 1930592552.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930882878.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 11656.07, 20200509.0, 'NAH4', 1930882878.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 5704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930669288.0, '2020-03-20', 20200318, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 5180.71, 20200320.0, 'NAGD', 1930669288.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930725274.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 3321.55, 20200331.0, 'NAA8', 1930725274.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930885642.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 18207.68, 20200511.0, 'NAH4', 1930885642.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 5707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M us', 2020.0, 1930638481.0, '2020-03-13', 20200311, 20200313, '2020-04-15', 'USD', 'RV', 1.0, 4331.06, 20200415.0, 'NACG', 1930638481.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 5708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930803277.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 73696.85, 20200420.0, 'NAU5', 1930803277.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930582661.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 5790.19, 20200229.0, 'NAH4', 1930582661.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK us', 2020.0, 1930781930.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 36201.74, 20200413.0, 'NAA8', 1930781930.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930675708.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 29146.38, 20200321.0, 'NAH4', 1930675708.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA llc', 2020.0, 1930685354.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 17731.76, 20200322.0, 'NAH4', 1930685354.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO foundation', 2020.0, 1930724945.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 36057.73, 20200402.0, 'NAA8', 1930724945.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930731306.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 12668.17, 20200403.0, 'NAH4', 1930731306.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930840768.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 12124.37, 20200430.0, 'NAC6', 1930840768.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930732026.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 23473.18, 20200401.0, 'NAA8', 1930732026.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930641075.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 11661.74, 20200313.0, 'NAA8', 1930641075.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK trust', 2020.0, 1930691259.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 29466.86, 20200324.0, 'NAA8', 1930691259.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930685513.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 34109.78, 20200322.0, 'NAH4', 1930685513.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930801058.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 5639.38, 20200420.0, 'NAH4', 1930801058.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200077943, 'HERR systems', 2020.0, 1930570046.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 71248.8, 20200227.0, 'NAA8', 1930570046.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 5722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930724214.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 111054.25, 20200331.0, 'NAH4', 1930724214.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930713533.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 46528.29, 20200329.0, 'NAH4', 1930713533.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR in', 2020.0, 1930637150.0, '2020-03-12', 20200311, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 5409.06, 20200312.0, 'NAGD', 1930637150.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC co', 2020.0, 1930681851.0, '2020-03-21', 20200321, 20200321, '2020-04-08', 'USD', 'RV', 1.0, 3339.98, 20200316.0, 'NAM4', 1930681851.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200084659, 'KR trust', 2020.0, 1930635475.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 15009.98, 20200312.0, 'NAA8', 1930635475.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER foundation', 2020.0, 1930658220.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 81178.2, 20200316.0, 'NAA8', 1930658220.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA systems', 2020.0, 1930693929.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 2333.2, 20200324.0, 'NAA8', 1930693929.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930798622.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 68331.48, 20200419.0, 'NAH4', 1930798622.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- trust', 2020.0, 2960622372.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'CAD', 'RV', 1.0, 65726.88, 20200320.0, 'CA10', 2960622372.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 5731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930685630.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 56779.73, 20200323.0, 'NAC6', 1930685630.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930802428.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 16081.8, 20200422.0, 'NAA8', 1930802428.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930606759.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 5093.66, 20200301.0, 'NAM4', 1930606759.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930624321.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 29359.28, 20200309.0, 'NAA8', 1930624321.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD trust', 2020.0, 1930581012.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 17585.05, 20200229.0, 'NAA8', 1930581012.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 5736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930627769.0, '2020-03-12', 20200309, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 15259.74, 20200312.0, 'NAH4', 1930627769.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 5737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930646074.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 33427.41, 20200313.0, 'NAH4', 1930646074.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA associates', 2020.0, 1930718655.0, '2020-03-31', 20200330, 20200331, '2020-04-30', 'USD', 'RV', 1.0, 36716.98, 20200331.0, 'NAD5', 1930718655.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT in', 2020.0, 1930566966.0, '2020-02-28', 20200225, 20200228, '2020-04-03', 'USD', 'RV', 1.0, 15828.96, 20200228.0, 'NAG2', 1930566966.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930692793.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 129839.92, 20200324.0, 'NAA8', 1930692793.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN llc', 2020.0, 1930717566.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 11157.9, 20200329.0, 'NAA8', 1930717566.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930824492.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 41101.33, 20200424.0, 'NAA8', 1930824492.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI us', 2020.0, 1930805999.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 15651.48, 20200422.0, 'NAA8', 1930805999.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930605756.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 30915.24, 20200306.0, 'NAH4', 1930605756.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH llc', 2020.0, 1930654557.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 159727.23, 20200317.0, 'NAC6', 1930654557.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corporation', 2020.0, 1930818787.0, '2020-04-23', 20200423, 20200423, '2020-04-26', 'USD', 'RV', 1.0, 5502.05, 20200416.0, 'NAM2', 1930818787.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930777400.0, '2020-04-12', 20200410, 20200412, '2020-05-27', 'USD', 'RV', 1.0, 109317.78, 20200412.0, 'NAWP', 1930777400.0, 1, '2020-05-26', 'early' ); /* INSERT QUERY NO: 5748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930801856.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 9218.71, 20200422.0, 'NAH4', 1930801856.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930842725.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 2027.59, 20200505.0, 'NAA8', 1930842725.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 5750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930685517.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 100368.02, 20200322.0, 'NAC6', 1930685517.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930653273.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 661.11, 20200317.0, 'NAH4', 1930653273.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930598046.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 1898.2, 20200304.0, 'NAH4', 1930598046.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 5753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930713602.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 975.87, 20200328.0, 'NAA8', 1930713602.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER associates', 2020.0, 1930788034.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 83261.47, 20200416.0, 'NAA8', 1930788034.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930883542.0, '2020-05-11', 20200509, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 47113.85, 20200511.0, 'NAH4', 1930883542.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 5756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960618757.0, '2020-03-05', 20200305, 20200305, '2020-03-16', 'CAD', 'RV', 1.0, 103373.17, 20200306.0, 'CA10', 2960618757.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 5757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC associates', 2020.0, 2960629860.0, '2020-04-21', 20200421, 20200421, '2020-05-02', 'CAD', 'RV', 1.0, 40597.7, 20200422.0, 'CA10', 2960629860.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 5758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930782246.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 28035.77, 20200413.0, 'NAA8', 1930782246.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930577263.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 48693.34, 20200227.0, 'NAC6', 1930577263.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 5760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930759169.0, '2020-04-10', 20200407, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 201.6, 20200410.0, 'NAGD', 1930759169.0, 1, '2020-06-10', 'early' ); /* INSERT QUERY NO: 5761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930765684.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 1356.55, 20200410.0, 'NAH4', 1930765684.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930801335.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 82687.35, 20200419.0, 'NAC6', 1930801335.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930732487.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 55117.98, 20200403.0, 'NAH4', 1930732487.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 5764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY trust', 2020.0, 1930624020.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 71979.05, 20200309.0, 'NAC6', 1930624020.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030443, 'GLACIE us', 2020.0, 1930599317.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 16516.8, 20200304.0, 'NAA8', 1930599317.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 5766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930705059.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 21850.21, 20200326.0, 'NAH4', 1930705059.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 5767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK co', 2020.0, 1930652862.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 72439.69, 20200315.0, 'NAA8', 1930652862.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corporation', 2020.0, 1930583153.0, '2020-02-28', 20200229, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 39285.81, 20200228.0, 'NAA8', 1930583153.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 5769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M co', 2020.0, 2960626635.0, '2020-04-07', 20200407, 20200407, '2020-04-18', 'CAD', 'RV', 1.0, 14009.95, 20200408.0, 'CA10', 2960626635.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 5770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER associates', 2020.0, 1930826823.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 17509.03, 20200427.0, 'NAA8', 1930826823.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 5771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930695859.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 6250.56, 20200327.0, 'NAA8', 1930695859.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU in', 2020.0, 1930730598.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 90448.5, 20200401.0, 'NAC6', 1930730598.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corporation', 2020.0, 2960627508.0, '2020-04-07', 20200407, 20200407, '2020-04-18', 'CAD', 'RV', 1.0, 47318.08, 20200408.0, 'CA10', 2960627508.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 5774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR associates', 2020.0, 1930821975.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 73912.56, 20200424.0, 'NAA8', 1930821975.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100044010, 'LAND trust', 2020.0, 1930721370.0, '2020-03-31', 20200330, 20200331, '2020-05-02', 'USD', 'RV', 1.0, 47839.68, 20200331.0, 'NA32', 1930721370.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930670599.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 82950.08, 20200319.0, 'NAH4', 1930670599.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930827709.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 3569.22, 20200427.0, 'NAC6', 1930827709.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930667043.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 33737.8, 20200318.0, 'NAH4', 1930667043.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930861327.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 18383.05, 20200505.0, 'NAH4', 1930861327.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corp', 2020.0, 1930693224.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 73958.58, 20200324.0, 'NAA8', 1930693224.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930886422.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 14316.09, 20200512.0, 'NAH4', 1930886422.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 5782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA ', 2020.0, 1930586977.0, '2020-03-02', 20200303, 20200302, '2020-04-01', 'USD', 'RV', 1.0, 52078.88, 20200302.0, 'NAD5', 1930586977.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930690241.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 29375.99, 20200324.0, 'NAH4', 1930690241.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT ', 2020.0, 1930777481.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 21872.0, 20200413.0, 'NAA8', 1930777481.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930891773.0, '2020-05-11', 20200512, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 6540.08, 20200511.0, 'NAH4', 1930891773.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 5786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA trust', 2020.0, 1930661295.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 18803.66, 20200317.0, 'NAA8', 1930661295.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 5787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930593521.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 2178.3, 20200302.0, 'NAU5', 1930593521.0, 1, '2020-03-18', '0-15 days' ); /* INSERT QUERY NO: 5788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930860547.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 1033.5, 20200506.0, 'NAH4', 1930860547.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 5789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930792930.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 3987.68, 20200416.0, 'NAH4', 1930792930.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960628054.0, '2020-04-12', 20200412, 20200412, '2020-04-22', 'CAD', 'RV', 1.0, 62826.05, 20200412.0, 'CA10', 2960628054.0, 1, '2020-04-26', '0-15 days' ); /* INSERT QUERY NO: 5791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930654829.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 20793.57, 20200316.0, 'NAA8', 1930654829.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930714141.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 5932.07, 20200328.0, 'NAH4', 1930714141.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE systems', 2020.0, 1930773535.0, '2020-04-14', 20200410, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 8370.64, 20200414.0, 'NAA8', 1930773535.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA corporation', 2020.0, 1930775836.0, '2020-04-14', 20200410, 20200414, '2020-05-14', 'USD', 'RV', 1.0, 31523.23, 20200414.0, 'NAD5', 1930775836.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930753222.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 75343.32, 20200406.0, 'NAA8', 1930753222.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200886415, 'COSTCO in', 2020.0, 1930648990.0, '2020-03-18', 20200313, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 13889.7, 20200318.0, 'NAA8', 1930648990.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930604962.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 92.54, 20200305.0, 'NAA8', 1930604962.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930675623.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 4747.92, 20200320.0, 'NAH4', 1930675623.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930576684.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 1282.86, 20200301.0, 'NAH4', 1930576684.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200656729, 'PERFOR systems', 2020.0, 1930677176.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 26826.93, 20200323.0, 'NAA8', 1930677176.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT corporation', 2020.0, 1930855668.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 75357.76, 20200504.0, 'NAU5', 1930855668.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 5802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930599888.0, '2020-03-04', 20200304, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 784.62, 20200304.0, 'NAGD', 1930599888.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT corp', 2020.0, 1930833842.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 21653.75, 20200428.0, 'NAA8', 1930833842.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 5804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930761499.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 16766.91, 20200409.0, 'NAA8', 1930761499.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930801617.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 25284.94, 20200419.0, 'NAH4', 1930801617.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F trust', 2020.0, 1930692118.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 23984.95, 20200324.0, 'NAA8', 1930692118.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930584504.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 74734.17, 20200302.0, 'NAAX', 1930584504.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930682613.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 48148.48, 20200322.0, 'NAH4', 1930682613.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200978592, 'PLAZA corp', 2020.0, 1990572905.0, '2020-04-01', 20200328, 20200401, '2020-05-06', 'USD', 'RV', 1.0, 23005.04, 20200401.0, 'NAG2', 1990572905.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 5810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930731177.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 72874.56, 20200401.0, 'NAU5', 1930731177.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 5811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960623523.0, '2020-03-25', 20200325, 20200325, '2020-04-04', 'CAD', 'RV', 1.0, 147320.54, 20200325.0, 'CA10', 2960623523.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 5812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN systems', 2020.0, 1930739356.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 77469.82, 20200403.0, 'NAA8', 1930739356.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200486270, 'BAR co', 2020.0, 1930831708.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 3803.51, 20200429.0, 'NAA8', 1930831708.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST us', 2020.0, 1930686989.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 69302.45, 20200324.0, 'NAAX', 1930686989.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930744341.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 26989.04, 20200405.0, 'NAH4', 1930744341.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS systems', 2020.0, 1930671978.0, '2020-03-21', 20200319, 20200321, '2020-04-25', 'USD', 'RV', 1.0, 35283.6, 20200321.0, 'NAG2', 1930671978.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769556, 'SHAM corp', 2020.0, 1930661812.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 60875.5, 20200319.0, 'NAA8', 1930661812.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930715041.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 16223.52, 20200328.0, 'NAH4', 1930715041.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930624317.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 9499.4, 20200310.0, 'NAA8', 1930624317.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930881200.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 7618.05, 20200509.0, 'NAH4', 1930881200.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 5821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA llc', 2020.0, 1930690511.0, '2020-03-24', 20200324, 20200324, '2020-03-26', 'USD', 'RV', 1.0, 29645.05, 20200316.0, 'NAM2', 1930690511.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100036261, 'KEW ', 2020.0, 1930720002.0, '2020-04-03', 20200330, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 1221.39, 20200403.0, 'NAA8', 1930720002.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 5823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO co', 2020.0, 1930647100.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 2282.36, 20200313.0, 'NAA8', 1930647100.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 5824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - llc', 2020.0, 1930729112.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 26100.08, 20200401.0, 'NAA8', 1930729112.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S associates', 2020.0, 1930773711.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 15520.59, 20200412.0, 'NAA8', 1930773711.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930681397.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 20198.44, 20200321.0, 'NAU5', 1930681397.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930708681.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 30770.34, 20200327.0, 'NAH4', 1930708681.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106372, 'G T trust', 2020.0, 2960632284.0, '2020-05-03', 20200503, 20200503, '2020-05-15', 'CAD', 'RV', 1.0, 19077.98, 20200505.0, 'CA10', 2960632284.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 5829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC co', 2020.0, 1930875174.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 4438.22, 20200507.0, 'NAA8', 1930875174.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE co', 2020.0, 1930600794.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 97243.2, 20200304.0, 'NAA8', 1930600794.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 5831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US ', 2020.0, 1930799806.0, '2020-04-24', 20200417, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 8989.79, 20200424.0, 'NAA8', 1930799806.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930598690.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 118702.27, 20200304.0, 'NAA8', 1930598690.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930763477.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 17846.02, 20200410.0, 'NAH4', 1930763477.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140103335, 'PARAM associates', 2020.0, 1991841604.0, '2020-03-22', 20200318, 20200322, '2020-04-21', 'USD', 'RV', 1.0, 1067.58, 20200322.0, 'NAVE', 1991841604.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 5835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930699321.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 8793.09, 20200325.0, 'NAAX', 1930699321.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930581257.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 38740.14, 20200301.0, 'NAH4', 1930581257.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA foundation', 2020.0, 1930856765.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 2777.46, 20200501.0, 'NAM4', 1930856765.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 5838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930747022.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 13204.66, 20200404.0, 'NAH4', 1930747022.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE us', 2020.0, 1930814679.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 41156.42, 20200423.0, 'NAA8', 1930814679.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930775746.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 4760.86, 20200412.0, 'NAH4', 1930775746.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930728186.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 4633.46, 20200402.0, 'NAH4', 1930728186.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930731704.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 29716.18, 20200402.0, 'NAH4', 1930731704.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930718590.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 32626.56, 20200329.0, 'NAH4', 1930718590.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100032278, 'SI llc', 2020.0, 1930689626.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 5261.4, 20200323.0, 'NAA8', 1930689626.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930746696.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 12668.17, 20200406.0, 'NAH4', 1930746696.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 5846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE us', 2020.0, 1930768479.0, '2020-04-16', 20200409, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 4914.48, 20200416.0, 'NAA8', 1930768479.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 5847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930773313.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 278.64, 20200401.0, 'NAM4', 1930773313.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 5848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930862665.0, '2020-05-06', 20200506, 20200506, '2020-05-11', 'USD', 'RV', 1.0, 10084.5, 20200501.0, 'NAM2', 1930862665.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930669579.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 14257.4, 20200320.0, 'NAH4', 1930669579.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930715128.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 28854.13, 20200329.0, 'NAH4', 1930715128.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930758486.0, '2020-04-06', 20200407, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 14425.2, 20200406.0, 'NAH4', 1930758486.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 5852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F llc', 2020.0, 1930603838.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 19999.8, 20200304.0, 'NAA8', 1930603838.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930667558.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 16848.23, 20200318.0, 'NAH4', 1930667558.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930772437.0, '2020-04-10', 20200410, 20200410, '2020-04-08', 'USD', 'RV', 1.0, 38956.06, 20200401.0, 'NAM1', 1930772437.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D corp', 2020.0, 1930632973.0, '2020-03-13', 20200310, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 34626.83, 20200313.0, 'NAA8', 1930632973.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930789130.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 126551.6, 20200416.0, 'NAA8', 1930789130.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 5857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930795049.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 35504.75, 20200417.0, 'NAH4', 1930795049.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER corp', 2020.0, 1930582639.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 17952.54, 20200301.0, 'NAA8', 1930582639.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 5859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930584049.0, '2020-03-05', 20200229, 20200305, '2020-05-09', 'USD', 'RV', 1.0, 1478.4, 20200305.0, 'NAGD', 1930584049.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930718450.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 471.56, 20200329.0, 'NAH4', 1930718450.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930625988.0, '2020-03-12', 20200309, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 9081.78, 20200312.0, 'NAH4', 1930625988.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 5862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930689045.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 144604.02, 20200324.0, 'NAC6', 1930689045.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER us', 2020.0, 1930789888.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 52306.85, 20200416.0, 'NAA8', 1930789888.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 5864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200934569, 'SODEXHO corp', 2020.0, 1930661639.0, '2020-03-20', 20200317, 20200320, '2020-04-24', 'USD', 'RV', 1.0, 996.92, 20200320.0, 'NAG2', 1930661639.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA associates', 2020.0, 1930645862.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 173.4, 20200312.0, 'NAA8', 1930645862.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930778214.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 12301.27, 20200412.0, 'NAH4', 1930778214.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930669495.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 5037.8, 20200318.0, 'NAA8', 1930669495.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 5868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930830251.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 2794.1, 20200427.0, 'NAU5', 1930830251.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930855892.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 8048.63, 20200505.0, 'NAA8', 1930855892.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 5870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corp', 2020.0, 1930571173.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 25487.12, 20200227.0, 'NAA8', 1930571173.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 5871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930777596.0, '2020-04-10', 20200411, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 58293.7, 20200410.0, 'NAU5', 1930777596.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930664244.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 67149.39, 20200317.0, 'NAA8', 1930664244.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & corporation', 2020.0, 1930597546.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 79582.23, 20200303.0, 'NAA8', 1930597546.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930845846.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 16108.12, 20200502.0, 'NAH4', 1930845846.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR corp', 2020.0, 1930809554.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 119382.02, 20200422.0, 'NAA8', 1930809554.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036066, 'GROC llc', 2020.0, 1930610059.0, '2020-03-10', 20200306, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 11275.0, 20200310.0, 'NAA8', 1930610059.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 5877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930586931.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 38283.12, 20200302.0, 'NAH4', 1930586931.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930814149.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 14492.98, 20200422.0, 'NAH4', 1930814149.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930718194.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 1979.82, 20200331.0, 'NAH4', 1930718194.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930718572.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 45845.37, 20200330.0, 'NAH4', 1930718572.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 5881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930826821.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 29567.61, 20200425.0, 'NAC6', 1930826821.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930710649.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 943.12, 20200327.0, 'NAH4', 1930710649.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930682992.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 2478.95, 20200323.0, 'NAA8', 1930682992.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS us', 2020.0, 1930776755.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 30901.5, 20200412.0, 'NAA8', 1930776755.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- us', 2020.0, 2960633014.0, '2020-05-05', 20200505, 20200505, '2020-05-16', 'CAD', 'RV', 1.0, 116232.92, 20200506.0, 'CA10', 2960633014.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 5886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930793382.0, '2020-04-16', 20200416, 20200416, '2020-05-06', 'USD', 'RV', 1.0, 4849.14, 20200416.0, 'NAD1', 1930793382.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 5887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930808669.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 96868.72, 20200422.0, 'NAA8', 1930808669.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930729125.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 73153.86, 20200331.0, 'NAH4', 1930729125.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO systems', 2020.0, 2960621754.0, '2020-03-20', 20200320, 20200320, '2020-03-31', 'CAD', 'RV', 1.0, 17611.07, 20200321.0, 'CA10', 2960621754.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 5890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930781333.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 44900.11, 20200413.0, 'NAA8', 1930781333.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 5891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106293, 'ATLANT foundation', 2020.0, 2960618891.0, '2020-03-10', 20200310, 20200310, '2020-03-30', 'CAD', 'RV', 1.0, 106.51, 20200320.0, 'CA10', 2960618891.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 5892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC llc', 2020.0, 1930831107.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 12111.15, 20200429.0, 'NAA8', 1930831107.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930654104.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 31945.33, 20200317.0, 'NAH4', 1930654104.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930810700.0, '2020-04-24', 20200421, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 91196.54, 20200424.0, 'NAA8', 1930810700.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB corp', 2020.0, 2960623635.0, '2020-03-25', 20200325, 20200325, '2020-04-12', 'CAD', 'RV', 1.0, 50597.28, 20200402.0, 'CA10', 2960623635.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 5896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930704184.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 6532.6, 20200326.0, 'NAH4', 1930704184.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 5897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930760506.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 23926.57, 20200408.0, 'NAH4', 1930760506.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 5898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930703606.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 5285.83, 20200326.0, 'NAA8', 1930703606.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 5899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO trust', 2020.0, 2960626580.0, '2020-04-13', 20200413, 20200413, '2020-05-01', 'CAD', 'RV', 1.0, 3024.0, 20200421.0, 'CA10', 2960626580.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 5900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC llc', 2020.0, 1930842076.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 38169.79, 20200430.0, 'NAA8', 1930842076.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930725913.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 23057.11, 20200331.0, 'NAH4', 1930725913.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 5902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930852695.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 12087.92, 20200504.0, 'NAA8', 1930852695.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 5903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930689885.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 2019.82, 20200316.0, 'NAM4', 1930689885.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200689451, 'PORK co', 2020.0, 1930580510.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 116203.33, 20200228.0, 'NAA8', 1930580510.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 5905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100013148, 'HARRY associates', 2020.0, 1930645945.0, '2020-03-19', 20200312, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 10003.5, 20200319.0, 'NAA8', 1930645945.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930736163.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 2178.72, 20200402.0, 'NAU5', 1930736163.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 5907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200816950, 'COLOM llc', 2020.0, 1990572711.0, '2020-04-17', 20200413, 20200417, '2020-05-17', 'USD', 'RV', 1.0, 46967.08, 20200417.0, 'NA38', 1990572711.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 5908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930776869.0, '2020-04-13', 20200413, 20200413, '2020-06-17', 'USD', 'RV', 1.0, 19033.91, 20200413.0, 'NAGD', 1930776869.0, 1, '2020-06-14', 'early' ); /* INSERT QUERY NO: 5909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930812810.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 5128.48, 20200416.0, 'NAM4', 1930812810.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE in', 2020.0, 1930605046.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 48747.2, 20200306.0, 'NAA8', 1930605046.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930750259.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 2373.96, 20200405.0, 'NAH4', 1930750259.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 5912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930830657.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 33820.65, 20200429.0, 'NAH4', 1930830657.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043892, 'IN-N in', 2020.0, 1930783337.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 16500.73, 20200413.0, 'NAA8', 1930783337.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA corp', 2020.0, 1930586530.0, '2020-03-02', 20200302, 20200302, '2020-03-11', 'USD', 'RV', 1.0, 1700.49, 20200301.0, 'NAM2', 1930586530.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 5915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930683408.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 42343.39, 20200322.0, 'NAH4', 1930683408.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC ', 2020.0, 1930858905.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 1287.83, 20200501.0, 'NAM4', 1930858905.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 5917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930642284.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 661.11, 20200313.0, 'NAH4', 1930642284.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 5918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE ', 2020.0, 1930789135.0, '2020-04-20', 20200415, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 12941.92, 20200420.0, 'NAA8', 1930789135.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG in', 2020.0, 1930757219.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 38803.46, 20200406.0, 'NAA8', 1930757219.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930611316.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 3476.58, 20200306.0, 'NAH4', 1930611316.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930876441.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 721.36, 20200507.0, 'NAU5', 1930876441.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 5922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930809781.0, '2020-04-24', 20200421, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 30220.01, 20200424.0, 'NAAX', 1930809781.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 5923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930788436.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 26834.8, 20200414.0, 'NAH4', 1930788436.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 5924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930829071.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 108439.39, 20200427.0, 'NAC6', 1930829071.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930739319.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 14049.57, 20200403.0, 'NAH4', 1930739319.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930774814.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 1995.84, 20200411.0, 'NAH4', 1930774814.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 5927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930693360.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 5834.03, 20200325.0, 'NAA8', 1930693360.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930682986.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 5666.67, 20200321.0, 'NAA8', 1930682986.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930832156.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 67897.43, 20200429.0, 'NAC6', 1930832156.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930630145.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 273.52, 20200310.0, 'NAA8', 1930630145.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 5931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930837544.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 30299.26, 20200430.0, 'NAC6', 1930837544.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930731481.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 17947.4, 20200402.0, 'NAH4', 1930731481.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 5933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930842519.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 77.86, 20200430.0, 'NAH4', 1930842519.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 5934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930624352.0, '2020-03-09', 20200309, 20200309, '2020-05-13', 'USD', 'RV', 1.0, 70747.93, 20200309.0, 'NAGD', 1930624352.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 5935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS corp', 2020.0, 1930729910.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 44653.99, 20200402.0, 'NAA8', 1930729910.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930651961.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 23322.92, 20200314.0, 'NAA8', 1930651961.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE us', 2020.0, 2960621620.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 117326.64, 20200318.0, 'CA10', 2960621620.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 5938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930673605.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 31875.18, 20200320.0, 'NAH4', 1930673605.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930686261.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 40747.89, 20200324.0, 'NAH4', 1930686261.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930798577.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 26624.45, 20200418.0, 'NAH4', 1930798577.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 5941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930595882.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 50641.14, 20200305.0, 'NAH4', 1930595882.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 5942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - foundation', 2020.0, 1930593312.0, '2020-03-02', 20200303, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 37801.19, 20200302.0, 'NAGD', 1930593312.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 5943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930586330.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 32629.0, 20200302.0, 'NAAX', 1930586330.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 5944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO us', 2020.0, 1930690250.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 27209.28, 20200324.0, 'NAA8', 1930690250.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104392, 'FLANAG llc', 2020.0, 2960633869.0, '2020-05-14', 20200514, 20200514, '2020-05-24', 'CAD', 'RV', 1.0, 7032.8, 20200514.0, 'CA10', 2960633869.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 5946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930752394.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 4872.65, 20200407.0, 'NAH4', 1930752394.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 5947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930705709.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 18402.37, 20200327.0, 'NAH4', 1930705709.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930829702.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 3227.43, 20200426.0, 'NAH4', 1930829702.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930593017.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 1414.69, 20200302.0, 'NAH4', 1930593017.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 5950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930637465.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 59850.44, 20200312.0, 'NAAX', 1930637465.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930830494.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 1463.81, 20200428.0, 'NAA8', 1930830494.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 5952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200418007, 'AM in', 2020.0, 1930839674.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 1914.5, 20200504.0, 'NAA8', 1930839674.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930673358.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 53828.38, 20200320.0, 'NAAX', 1930673358.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 5954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930585535.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 128553.21, 20200302.0, 'NAC6', 1930585535.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930797007.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 9103.96, 20200417.0, 'NAH4', 1930797007.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 5956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC co', 2020.0, 1930810868.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 1451.88, 20200416.0, 'NAM4', 1930810868.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 5957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930645724.0, '2020-03-12', 20200312, 20200312, '2020-04-13', 'USD', 'RV', 1.0, 3103.25, 20200312.0, 'NA32', 1930645724.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930714281.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 8090.01, 20200328.0, 'NAH4', 1930714281.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930577172.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 41056.18, 20200229.0, 'NAH4', 1930577172.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 5960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE ', 2020.0, 1930692500.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 9709.05, 20200324.0, 'NAA8', 1930692500.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930654752.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 143712.66, 20200315.0, 'NAA8', 1930654752.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 5962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW us', 2020.0, 1930865695.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 103441.78, 20200506.0, 'NAA8', 1930865695.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 5963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS corporation', 2020.0, 1930803980.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 2154.57, 20200420.0, 'NAA8', 1930803980.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 5964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930674486.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 8869.48, 20200321.0, 'NAA8', 1930674486.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 5965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742791, 'QUI systems', 2020.0, 1930830952.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 56998.08, 20200429.0, 'NAA8', 1930830952.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 5966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH trust', 2020.0, 1930598568.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 113088.1, 20200304.0, 'NAA8', 1930598568.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 5967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930719671.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 13765.6, 20200330.0, 'NAAX', 1930719671.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930673528.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 5126.33, 20200320.0, 'NAH4', 1930673528.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726025, 'MARTI co', 2020.0, 1930850419.0, '2020-05-01', 20200502, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 49406.46, 20200501.0, 'NAA8', 1930850419.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 5970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930666982.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 23728.52, 20200318.0, 'NAU5', 1930666982.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 5971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719300, 'SYSTEMS systems', 2020.0, 1930671436.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 5456.72, 20200321.0, 'NAA8', 1930671436.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 5972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA corp', 2020.0, 1930645349.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 73122.46, 20200312.0, 'NAA8', 1930645349.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 5973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W associates', 2020.0, 1930716054.0, '2020-03-28', 20200328, 20200328, '2020-06-01', 'USD', 'RV', 1.0, 2563.63, 20200328.0, 'NAGD', 1930716054.0, 1, '2020-05-29', 'early' ); /* INSERT QUERY NO: 5974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930630125.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 14983.01, 20200311.0, 'NAH4', 1930630125.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 5975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930743347.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 29288.79, 20200403.0, 'NAA8', 1930743347.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930858153.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 36557.49, 20200506.0, 'NAH4', 1930858153.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 5977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100054993, 'CENTRAL foundation', 2020.0, 2960630276.0, '2020-04-24', 20200424, 20200424, '2020-05-08', 'CAD', 'RV', 1.0, 7859.5, 20200428.0, 'CA10', 2960630276.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 5978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930671221.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 1444.92, 20200320.0, 'NAH4', 1930671221.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 5979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103409, 'BUTTE associates', 2020.0, 1991841219.0, '2020-03-20', 20200316, 20200320, '2020-04-19', 'USD', 'RV', 1.0, 13061.26, 20200320.0, 'NAVE', 1991841219.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 5980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR foundation', 2020.0, 1930788905.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 84177.37, 20200414.0, 'NAA8', 1930788905.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 5981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR in', 2020.0, 1930577160.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 10572.14, 20200228.0, 'NAA8', 1930577160.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 5982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930715375.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 13865.69, 20200329.0, 'NAH4', 1930715375.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW trust', 2020.0, 1930716338.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 129211.24, 20200328.0, 'NAA8', 1930716338.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 5984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103400, 'FOST us', 2020.0, 1991840713.0, '2020-03-07', 20200303, 20200307, '2020-04-06', 'USD', 'RV', 1.0, 6671.5, 20200307.0, 'NAVE', 1991840713.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 5985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB ', 2020.0, 2960627583.0, '2020-04-14', 20200414, 20200414, '2020-04-26', 'CAD', 'RV', 1.0, 4721.76, 20200416.0, 'CA10', 2960627583.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 5986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO foundation', 2020.0, 2960625172.0, '2020-04-03', 20200403, 20200403, '2020-04-15', 'CAD', 'RV', 1.0, 78298.51, 20200405.0, 'CA10', 2960625172.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 5987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930684790.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 40244.83, 20200323.0, 'NAH4', 1930684790.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 5988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930745436.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 661.11, 20200404.0, 'NAH4', 1930745436.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 5989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200403703, 'H & llc', 2020.0, 1930760282.0, '2020-04-07', 20200407, 20200407, '2020-04-17', 'USD', 'RV', 1.0, 21283.8, 20200407.0, 'NA10', 1930760282.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 5990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930578024.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 55459.72, 20200228.0, 'NAH4', 1930578024.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 5991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE trust', 2020.0, 1930642159.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 72073.15, 20200313.0, 'NAA8', 1930642159.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 5992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930627451.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 71213.55, 20200310.0, 'NAA8', 1930627451.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 5993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930693346.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 702.02, 20200325.0, 'NAA8', 1930693346.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 5994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC systems', 2020.0, 1930617835.0, '2020-03-07', 20200307, 20200307, '2020-03-08', 'USD', 'RV', 1.0, 15508.76, 20200301.0, 'NAM1', 1930617835.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 5995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930748823.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 7954.64, 20200404.0, 'NAH4', 1930748823.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 5996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930731891.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 4112.28, 20200403.0, 'NAA8', 1930731891.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 5997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC associates', 2020.0, 1930753579.0, '2020-04-06', 20200406, 20200406, '2020-04-11', 'USD', 'RV', 1.0, 2618.85, 20200401.0, 'NAM2', 1930753579.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 5998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030014, 'BASIX co', 2020.0, 1930838595.0, '2020-04-29', 20200429, 20200429, '2020-05-19', 'USD', 'RV', 1.0, 79959.0, 20200429.0, 'NAD1', 1930838595.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 5999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M trust', 2020.0, 1930753823.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 66881.71, 20200406.0, 'NAA8', 1930753823.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M llc', 2020.0, 2960628187.0, '2020-04-18', 20200418, 20200418, '2020-04-28', 'CAD', 'RV', 1.0, 17206.17, 20200418.0, 'CA10', 2960628187.0, 1, '2020-05-05', '0-15 days' ); /* INSERT QUERY NO: 6001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930675188.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 4763.83, 20200321.0, 'NAH4', 1930675188.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930699995.0, '2020-03-28', 20200325, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 9308.3, 20200328.0, 'NAH4', 1930699995.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA in', 2020.0, 1930855703.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 30148.42, 20200504.0, 'NAA8', 1930855703.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG corp', 2020.0, 1930683360.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 16782.37, 20200322.0, 'NAA8', 1930683360.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930726021.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 45258.12, 20200401.0, 'NAH4', 1930726021.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930752671.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 79982.43, 20200408.0, 'NAA8', 1930752671.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930598384.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 953.46, 20200304.0, 'NAA8', 1930598384.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE in', 2020.0, 1930628730.0, '2020-03-10', 20200310, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 7199.19, 20200310.0, 'NAGD', 1930628730.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 6009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930765333.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 76124.34, 20200410.0, 'NAC6', 1930765333.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S trust', 2020.0, 1930705373.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 1933.84, 20200326.0, 'NAA8', 1930705373.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT llc', 2020.0, 1930620135.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 6758.97, 20200308.0, 'NAA8', 1930620135.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930766090.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1898.9, 20200409.0, 'NAH4', 1930766090.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 6013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930748216.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 14091.61, 20200405.0, 'NAA8', 1930748216.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 6014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE us', 2020.0, 1930624605.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 7788.0, 20200310.0, 'NAA8', 1930624605.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930830914.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 3517.12, 20200428.0, 'NAA8', 1930830914.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO us', 2020.0, 2960629420.0, '2020-04-18', 20200418, 20200418, '2020-04-30', 'CAD', 'RV', 1.0, 198329.19, 20200420.0, 'CA10', 2960629420.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 6017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930607407.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 5614.48, 20200307.0, 'NAH4', 1930607407.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER trust', 2020.0, 1930850184.0, '2020-05-01', 20200502, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 55964.73, 20200501.0, 'NAA8', 1930850184.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100056666, 'KGL FOO systems', 2020.0, 1930763556.0, '2020-04-11', 20200408, 20200411, '2020-04-11', 'USD', 'RV', 1.0, 28722.62, 20200411.0, 'NAB1', 1930763556.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772595, 'SAFEW systems', 2020.0, 1930647212.0, '2020-03-13', 20200313, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 2694.32, 20200313.0, 'NAGD', 1930647212.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA corp', 2020.0, 1930837476.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 7695.14, 20200428.0, 'NAA8', 1930837476.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corporation', 2020.0, 1930694215.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 32997.6, 20200325.0, 'NAA8', 1930694215.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930738123.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 10212.65, 20200403.0, 'NAC6', 1930738123.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR trust', 2020.0, 1930794684.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 10096.29, 20200416.0, 'NAA8', 1930794684.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL foundation', 2020.0, 1930728099.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 20708.42, 20200402.0, 'NAA8', 1930728099.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930733255.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 56703.04, 20200403.0, 'NAH4', 1930733255.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930611165.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 46794.92, 20200309.0, 'NAC6', 1930611165.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930710868.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 2747.42, 20200329.0, 'NAH4', 1930710868.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930732141.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 32259.59, 20200402.0, 'NAH4', 1930732141.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT foundation', 2020.0, 1930637615.0, '2020-03-11', 20200311, 20200311, '2020-04-14', 'USD', 'RV', 1.0, 4935.79, 20200311.0, 'NAAW', 1930637615.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930659444.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 29747.36, 20200318.0, 'NAAX', 1930659444.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930783303.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 18135.21, 20200414.0, 'NAA8', 1930783303.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106203, 'DEF ', 2020.0, 2960629431.0, '2020-04-20', 20200420, 20200420, '2020-05-02', 'CAD', 'RV', 1.0, 1299.86, 20200422.0, 'CA10', 2960629431.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 6034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930584713.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 10389.33, 20200301.0, 'NAH4', 1930584713.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200778998, 'CE in', 2020.0, 1930691999.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 38921.26, 20200324.0, 'NAA8', 1930691999.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corp', 2020.0, 1930861633.0, '2020-05-06', 20200506, 20200506, '2020-05-24', 'USD', 'RV', 1.0, 3039.34, 20200501.0, 'NAM4', 1930861633.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 6037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930713418.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 16451.39, 20200328.0, 'NAH4', 1930713418.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930575244.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 34863.91, 20200227.0, 'NAA8', 1930575244.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 6039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930663833.0, '2020-03-19', 20200317, 20200319, '2020-05-23', 'USD', 'RV', 1.0, 8931.84, 20200319.0, 'NAGD', 1930663833.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930568144.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 14517.87, 20200228.0, 'NAA8', 1930568144.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 6041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930798189.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 50501.04, 20200417.0, 'NAH4', 1930798189.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 6042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO associates', 2020.0, 1930601078.0, '2020-03-09', 20200304, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 38173.01, 20200309.0, 'NAA8', 1930601078.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930675597.0, '2020-03-23', 20200320, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 34676.16, 20200323.0, 'NAAX', 1930675597.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK foundation', 2020.0, 1930670816.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 115638.91, 20200318.0, 'NAA8', 1930670816.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930646189.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 51407.61, 20200313.0, 'NAAX', 1930646189.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930817073.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 52564.4, 20200423.0, 'NAH4', 1930817073.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930567149.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 44294.54, 20200227.0, 'NAH4', 1930567149.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 6048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS corporation', 2020.0, 1930671033.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 6405.59, 20200318.0, 'NAA8', 1930671033.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930724280.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 62823.52, 20200401.0, 'NAH4', 1930724280.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU associates', 2020.0, 1930817521.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 124789.86, 20200424.0, 'NAA8', 1930817521.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930819901.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 834.42, 20200416.0, 'NAM4', 1930819901.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930739815.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 41502.14, 20200404.0, 'NAH4', 1930739815.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA associates', 2020.0, 1930637818.0, '2020-03-12', 20200311, 20200312, '2020-04-26', 'USD', 'RV', 1.0, 122663.37, 20200312.0, 'NAWP', 1930637818.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 6054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930717361.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 64186.48, 20200330.0, 'NAA8', 1930717361.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930763603.0, '2020-04-08', 20200408, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 14651.88, 20200408.0, 'NAGD', 1930763603.0, 1, '2020-06-08', 'early' ); /* INSERT QUERY NO: 6056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930614012.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 14387.28, 20200306.0, 'NAH4', 1930614012.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930647047.0, '2020-03-12', 20200313, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 1886.24, 20200312.0, 'NAH4', 1930647047.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930798443.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 37849.51, 20200418.0, 'NAA8', 1930798443.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930714748.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 20908.69, 20200327.0, 'NAH4', 1930714748.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930672791.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 47376.11, 20200321.0, 'NAH4', 1930672791.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763489, 'GENERAL trust', 2020.0, 1930767006.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 118022.94, 20200409.0, 'NAA8', 1930767006.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI foundation', 2020.0, 1930752844.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 64212.55, 20200406.0, 'NAA8', 1930752844.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200782001, 'GORDO associates', 2020.0, 1930819109.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 26231.26, 20200424.0, 'NAA8', 1930819109.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - foundation', 2020.0, 1930668463.0, '2020-03-18', 20200318, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 27218.59, 20200318.0, 'NAGD', 1930668463.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M trust', 2020.0, 1930570290.0, '2020-02-27', 20200226, 20200227, '2020-03-15', 'USD', 'RV', 1.0, 4296.33, 20200315.0, 'NACE', 1930570290.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 6066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930822022.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 7606.73, 20200424.0, 'NAH4', 1930822022.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200375796, 'KRI llc', 2020.0, 1930610853.0, '2020-03-12', 20200306, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 4216.32, 20200312.0, 'NAA8', 1930610853.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930671807.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 32715.47, 20200319.0, 'NAAX', 1930671807.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS llc', 2020.0, 1930765106.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 4011.56, 20200410.0, 'NAA8', 1930765106.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC ', 2020.0, 1930670796.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 7263.92, 20200321.0, 'NAA8', 1930670796.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930684284.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 31188.03, 20200321.0, 'NAH4', 1930684284.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200126819, 'MCLANE corporation', 2020.0, 1930687988.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 44886.14, 20200324.0, 'NAA8', 1930687988.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930623665.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 80456.3, 20200310.0, 'NAH4', 1930623665.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930731733.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 4127.04, 20200402.0, 'NAA8', 1930731733.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930665640.0, '2020-03-19', 20200318, 20200319, '2020-05-23', 'USD', 'RV', 1.0, 68.4, 20200319.0, 'NAGD', 1930665640.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F llc', 2020.0, 1930694211.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 27762.45, 20200324.0, 'NAA8', 1930694211.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930777447.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 31566.57, 20200412.0, 'NAH4', 1930777447.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930708331.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 22776.4, 20200327.0, 'NAH4', 1930708331.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS co', 2020.0, 1930879390.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 44017.77, 20200508.0, 'NAA8', 1930879390.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930737067.0, '2020-04-07', 20200403, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 49467.7, 20200407.0, 'NAAX', 1930737067.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930730862.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 32906.77, 20200402.0, 'NAAX', 1930730862.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 6082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M ', 2020.0, 1930778030.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 47575.19, 20200413.0, 'NAA8', 1930778030.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA foundation', 2020.0, 1930833485.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 35216.75, 20200429.0, 'NAA8', 1930833485.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930675230.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 12520.75, 20200320.0, 'NAH4', 1930675230.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930851591.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 8160.97, 20200504.0, 'NAH4', 1930851591.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930799713.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 8871.71, 20200419.0, 'NAH4', 1930799713.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA corp', 2020.0, 1930847182.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 14444.38, 20200503.0, 'NAH4', 1930847182.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 6088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930719393.0, '2020-04-02', 20200330, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 1626.1, 20200402.0, 'NAA8', 1930719393.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930717632.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 252.48, 20200329.0, 'NAA8', 1930717632.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200735528, 'ASSOCIA ', 2020.0, 1930642527.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 139802.24, 20200313.0, 'NAA8', 1930642527.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930725461.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 14699.43, 20200401.0, 'NAH4', 1930725461.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930861609.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 48507.07, 20200505.0, 'NAA8', 1930861609.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 6093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE co', 2020.0, 1930853039.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 52912.07, 20200505.0, 'NAA8', 1930853039.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO trust', 2020.0, 2960628609.0, '2020-04-14', 20200414, 20200414, '2020-04-24', 'CAD', 'RV', 1.0, 31710.13, 20200414.0, 'CA10', 2960628609.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 6095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930717543.0, '2020-03-29', 20200328, 20200329, '2020-05-13', 'USD', 'RV', 1.0, 140928.42, 20200329.0, 'NAWP', 1930717543.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 6096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930829014.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 872.95, 20200427.0, 'NAA8', 1930829014.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930818048.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 856.64, 20200416.0, 'NAM4', 1930818048.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930689408.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 42540.21, 20200324.0, 'NAH4', 1930689408.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930839405.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 2899.64, 20200429.0, 'NAA8', 1930839405.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930794690.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 475.2, 20200417.0, 'NAA8', 1930794690.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 6101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER ', 2020.0, 1930739523.0, '2020-04-09', 20200403, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 15540.78, 20200409.0, 'NAA8', 1930739523.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930641660.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 22085.07, 20200312.0, 'NAA8', 1930641660.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930814426.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 15879.63, 20200423.0, 'NAH4', 1930814426.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930653460.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 17794.7, 20200316.0, 'NAH4', 1930653460.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930705983.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 83295.15, 20200326.0, 'NAU5', 1930705983.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930585859.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 527.17, 20200302.0, 'NAH4', 1930585859.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930828669.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 18925.88, 20200428.0, 'NAH4', 1930828669.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER ', 2020.0, 1930605356.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 8922.17, 20200306.0, 'NAA8', 1930605356.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE in', 2020.0, 1930830311.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 79126.49, 20200426.0, 'NAA8', 1930830311.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930831566.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 892.68, 20200429.0, 'NAA8', 1930831566.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960618353.0, '2020-03-04', 20200304, 20200304, '2020-03-14', 'CAD', 'RV', 1.0, 35859.84, 20200304.0, 'CA10', 2960618353.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 6112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL co', 2020.0, 1930808749.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 144944.4, 20200421.0, 'NAA8', 1930808749.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 6113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO foundation', 2020.0, 1930858962.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 10980.17, 20200504.0, 'NAA8', 1930858962.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960623515.0, '2020-03-24', 20200324, 20200324, '2020-04-04', 'CAD', 'RV', 1.0, 103572.49, 20200325.0, 'CA10', 2960623515.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 6115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763229, 'MAINES llc', 2020.0, 1930917227.0, '2020-05-19', 20200519, 20200519, '2020-06-03', 'USD', 'RV', 1.0, 17544.11, 20200519.0, 'NAA8', 1930917227.0, 1, '2020-05-30', 'early' ); /* INSERT QUERY NO: 6116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930745772.0, '2020-04-04', 20200404, 20200404, '2020-04-11', 'USD', 'RV', 1.0, 1795.41, 20200401.0, 'NAM2', 1930745772.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930840881.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 50642.05, 20200430.0, 'NAH4', 1930840881.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS trust', 2020.0, 1930762360.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 58634.16, 20200408.0, 'NAA8', 1930762360.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - corporation', 2020.0, 1930686528.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 576.51, 20200322.0, 'NAA8', 1930686528.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M in', 2020.0, 1930850191.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 379.24, 20200502.0, 'NAA8', 1930850191.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930687031.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 11390.37, 20200323.0, 'NAH4', 1930687031.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT us', 2020.0, 1930855957.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 91544.37, 20200504.0, 'NAA8', 1930855957.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930705995.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 22589.89, 20200327.0, 'NAH4', 1930705995.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930808857.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 33399.84, 20200422.0, 'NAH4', 1930808857.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 6125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT systems', 2020.0, 1930860696.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 8879.51, 20200505.0, 'NAU5', 1930860696.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 6126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930714229.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 15435.35, 20200328.0, 'NAH4', 1930714229.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930856009.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 8851.61, 20200506.0, 'NAH4', 1930856009.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930857479.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 731.11, 20200505.0, 'NAH4', 1930857479.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930726115.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 93899.25, 20200331.0, 'NAA8', 1930726115.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY co', 2020.0, 1930829067.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 71118.48, 20200428.0, 'NAC6', 1930829067.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 6131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930862210.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 4785.48, 20200506.0, 'NAA8', 1930862210.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 6132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930649494.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 18438.67, 20200314.0, 'NAH4', 1930649494.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930732496.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 22.76, 20200403.0, 'NAH4', 1930732496.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930775838.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 61.29, 20200412.0, 'NAH4', 1930775838.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930761068.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 7090.93, 20200409.0, 'NAH4', 1930761068.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA corp', 2020.0, 1930768872.0, '2020-04-14', 20200409, 20200414, '2020-05-04', 'USD', 'RV', 1.0, 772.49, 20200414.0, 'NAD1', 1930768872.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE us', 2020.0, 1930762734.0, '2020-04-07', 20200408, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 16000.35, 20200407.0, 'NAA8', 1930762734.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ foundation', 2020.0, 1930855601.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 3233.99, 20200504.0, 'NAA8', 1930855601.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 6139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930722650.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 54017.17, 20200401.0, 'NAH4', 1930722650.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL corporation', 2020.0, 1930654369.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 104557.86, 20200315.0, 'NAA8', 1930654369.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930610844.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 1329.23, 20200307.0, 'NAH4', 1930610844.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930731646.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 19223.72, 20200402.0, 'NAC6', 1930731646.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 6143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930737682.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 58336.84, 20200404.0, 'NAH4', 1930737682.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930831629.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 38109.55, 20200428.0, 'NAH4', 1930831629.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930727497.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 2335.76, 20200401.0, 'NAH4', 1930727497.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER systems', 2020.0, 1930870370.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 7845.47, 20200506.0, 'NAA8', 1930870370.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930747668.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 1943.06, 20200405.0, 'NAH4', 1930747668.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960633970.0, '2020-05-11', 20200511, 20200511, '2020-05-22', 'CAD', 'RV', 1.0, 45134.43, 20200512.0, 'CA10', 2960633970.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 6149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930714863.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 48893.58, 20200330.0, 'NAH4', 1930714863.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930708306.0, '2020-03-29', 20200330, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 65094.62, 20200329.0, 'NAH4', 1930708306.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU associates', 2020.0, 1930789860.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 50789.7, 20200417.0, 'NAA8', 1930789860.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS co', 2020.0, 1930758188.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 61842.15, 20200407.0, 'NAA8', 1930758188.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200754278, 'MBM ', 2020.0, 1930880906.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 575.3, 20200509.0, 'NAA8', 1930880906.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930793357.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 20020.9, 20200418.0, 'NAA8', 1930793357.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S ', 2020.0, 1930584132.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 15900.82, 20200302.0, 'NAA8', 1930584132.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 6156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930789618.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 45795.2, 20200416.0, 'NAA8', 1930789618.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 6157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930688875.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 9076.44, 20200323.0, 'NAA8', 1930688875.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC foundation', 2020.0, 1930716542.0, '2020-03-26', 20200328, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 28568.73, 20200326.0, 'NAA8', 1930716542.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930819891.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1538.61, 20200424.0, 'NAA8', 1930819891.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930871039.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 13423.93, 20200508.0, 'NAH4', 1930871039.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 6161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET corp', 2020.0, 1930729567.0, '2020-04-01', 20200401, 20200401, '2020-04-21', 'USD', 'RV', 1.0, 1515.06, 20200401.0, 'NAD1', 1930729567.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200230690, 'DECA co', 2020.0, 1930744793.0, '2020-04-04', 20200404, 20200404, '2020-04-08', 'USD', 'RV', 1.0, 12424.09, 20200401.0, 'NAM1', 1930744793.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 6163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930710068.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 5290.36, 20200327.0, 'NAC6', 1930710068.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930852854.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 80256.4, 20200502.0, 'NAA8', 1930852854.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 6165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930799563.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 41659.95, 20200418.0, 'NAH4', 1930799563.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930710205.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 14609.43, 20200328.0, 'NAH4', 1930710205.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER us', 2020.0, 1930664187.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 41959.23, 20200319.0, 'NAA8', 1930664187.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200741831, 'SUPE corporation', 2020.0, 1930831071.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 15321.75, 20200427.0, 'NAA8', 1930831071.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 6169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200825136, 'COLOME systems', 2020.0, 1990571430.0, '2020-04-03', 20200330, 20200403, '2020-05-03', 'USD', 'RV', 1.0, 46967.08, 20200403.0, 'NA38', 1990571430.0, 1, '2020-05-05', '0-15 days' ); /* INSERT QUERY NO: 6170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH foundation', 2020.0, 1930660783.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 177210.24, 20200317.0, 'NAC6', 1930660783.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930708688.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 9261.2, 20200327.0, 'NAH4', 1930708688.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783734, 'FAREW us', 2020.0, 1930718658.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 39151.65, 20200330.0, 'NAA8', 1930718658.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930691567.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 5403.12, 20200330.0, 'NAA8', 1930691567.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC foundation', 2020.0, 1930716349.0, '2020-03-23', 20200328, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 22906.81, 20200323.0, 'NAA8', 1930716349.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930828058.0, '2020-04-28', 20200426, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 623.68, 20200428.0, 'NAH4', 1930828058.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930717228.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 38807.91, 20200331.0, 'NAH4', 1930717228.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER corp', 2020.0, 1930828222.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 110273.74, 20200426.0, 'NAA8', 1930828222.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930759532.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 1006.32, 20200408.0, 'NAC6', 1930759532.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA systems', 2020.0, 1930801100.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 49825.13, 20200418.0, 'NAA8', 1930801100.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER associates', 2020.0, 1930690216.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 50847.51, 20200323.0, 'NAA8', 1930690216.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200514741, 'LIDE corp', 2020.0, 1930576659.0, '2020-02-28', 20200228, 20200228, '2020-04-28', 'USD', 'RV', 1.0, 98461.8, 20200228.0, 'NAVQ', 1930576659.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 6182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930689617.0, '2020-03-21', 20200323, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 1339.29, 20200321.0, 'NAA8', 1930689617.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA llc', 2020.0, 1930875796.0, '2020-05-07', 20200507, 20200507, '2020-05-24', 'USD', 'RV', 1.0, 4758.92, 20200501.0, 'NAM4', 1930875796.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 6184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930690391.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 27230.96, 20200323.0, 'NAH4', 1930690391.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930799595.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 265.44, 20200419.0, 'NAA8', 1930799595.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930730373.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 3466.81, 20200402.0, 'NAH4', 1930730373.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT corporation', 2020.0, 1930644365.0, '2020-03-12', 20200312, 20200312, '2020-04-13', 'USD', 'RV', 1.0, 23570.26, 20200312.0, 'NA32', 1930644365.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930806271.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 69617.2, 20200420.0, 'NAH4', 1930806271.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930788807.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 41330.28, 20200417.0, 'NAH4', 1930788807.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 6190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE llc', 2020.0, 1930664420.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 437.62, 20200318.0, 'NAA8', 1930664420.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930777886.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 128755.94, 20200412.0, 'NAC6', 1930777886.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930767175.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 144515.23, 20200409.0, 'NAC6', 1930767175.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930747317.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 5841.14, 20200405.0, 'NAC6', 1930747317.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930782758.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 199.61, 20200415.0, 'NAH4', 1930782758.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'HEINZ ', 2020.0, 1991840458.0, '2020-03-20', 20200320, 20200320, '2020-05-04', 'USD', 'RV', 1.0, 23074.88, 20200320.0, 'NAVF', 1991840458.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 6196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI foundation', 2020.0, 1930820295.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 87442.52, 20200423.0, 'NAA8', 1930820295.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930716317.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 59841.17, 20200329.0, 'NAH4', 1930716317.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S systems', 2020.0, 1930685160.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 357.54, 20200322.0, 'NAA8', 1930685160.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200895843, 'US foundation', 2020.0, 1930614126.0, '2020-03-06', 20200306, 20200306, '2020-04-07', 'USD', 'RV', 1.0, 10225.3, 20200306.0, 'NA32', 1930614126.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930598621.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 43940.95, 20200306.0, 'NAH4', 1930598621.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100029649, 'LES ENTRE us', 2020.0, 2960630664.0, '2020-04-27', 20200427, 20200427, '2020-05-09', 'CAD', 'RV', 1.0, 378.5, 20200429.0, 'CA10', 2960630664.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 6202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930700228.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 1478.85, 20200325.0, 'NAA8', 1930700228.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930753093.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 73288.43, 20200408.0, 'NAA8', 1930753093.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200719839, 'ASSOCI ', 2020.0, 1930671737.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 47672.4, 20200320.0, 'NAA8', 1930671737.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930817881.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 18378.76, 20200423.0, 'NAH4', 1930817881.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930614306.0, '2020-03-07', 20200306, 20200307, '2020-05-11', 'USD', 'RV', 1.0, 13829.4, 20200307.0, 'NAGD', 1930614306.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930832328.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 19884.94, 20200429.0, 'NAH4', 1930832328.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 6208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER in', 2020.0, 1930585332.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 17283.5, 20200303.0, 'NAA8', 1930585332.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705089, 'JETR systems', 2020.0, 1930837751.0, '2020-04-30', 20200429, 20200430, '2020-07-04', 'USD', 'RV', 1.0, 1605.29, 20200430.0, 'NAGD', 1930837751.0, 1, '2020-07-02', 'early' ); /* INSERT QUERY NO: 6210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930716980.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 16035.02, 20200330.0, 'NAH4', 1930716980.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930801157.0, '2020-04-24', 20200419, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 98285.14, 20200424.0, 'NAA8', 1930801157.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930677210.0, '2020-03-20', 20200320, 20200320, '2020-03-20', 'USD', 'RV', 1.0, 19003.0, 20200320.0, 'NAX2', 1930677210.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 6213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200748108, 'KROGER trust', 2020.0, 1930671322.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 71404.36, 20200319.0, 'NAA8', 1930671322.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT foundation', 2020.0, 1930700658.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 1139.41, 20200327.0, 'NAA8', 1930700658.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930745538.0, '2020-04-06', 20200403, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 4181.16, 20200406.0, 'NAH4', 1930745538.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140105686, 'SYSC co', 2020.0, 2960631620.0, '2020-04-28', 20200428, 20200428, '2020-05-17', 'CAD', 'RV', 1.0, 6410.85, 20200507.0, 'CA10', 2960631620.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 6217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- corporation', 2020.0, 2960633321.0, '2020-05-08', 20200508, 20200508, '2020-05-18', 'CAD', 'RV', 1.0, 107849.11, 20200508.0, 'CA10', 2960633321.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 6218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930672047.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 2582.2, 20200316.0, 'NAM4', 1930672047.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930593426.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 69199.3, 20200302.0, 'NAH4', 1930593426.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930732810.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 7321.62, 20200403.0, 'NAA8', 1930732810.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M corp', 2020.0, 1930801035.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 88519.56, 20200419.0, 'NAA8', 1930801035.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 6222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930723818.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 40010.72, 20200331.0, 'NAH4', 1930723818.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930631596.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 8793.09, 20200312.0, 'NAAX', 1930631596.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930646584.0, '2020-03-13', 20200313, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 5799.05, 20200313.0, 'NAGD', 1930646584.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930700369.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 25926.43, 20200325.0, 'NAH4', 1930700369.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930713418.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 16451.39, 20200328.0, 'NAH4', 1930713418.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930592135.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 3797.1, 20200303.0, 'NAH4', 1930592135.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930841859.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 4626.75, 20200501.0, 'NAC6', 1930841859.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930799194.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 110.44, 20200420.0, 'NAA8', 1930799194.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 6230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH systems', 2020.0, 1930666078.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 11297.78, 20200319.0, 'NAC6', 1930666078.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC corporation', 2020.0, 1930647728.0, '2020-03-17', 20200313, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 14368.0, 20200317.0, 'NAA8', 1930647728.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO us', 2020.0, 2960625816.0, '2020-03-31', 20200401, 20200331, '2020-04-18', 'CAD', 'RV', 1.0, 203042.81, 20200408.0, 'CA10', 2960625816.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 6233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930611329.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 10994.29, 20200307.0, 'NAH4', 1930611329.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930713882.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 99880.8, 20200330.0, 'NAC6', 1930713882.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA in', 2020.0, 1930654655.0, '2020-03-16', 20200316, 20200316, '2020-03-24', 'USD', 'RV', 1.0, 12.96, 20200301.0, 'NAM4', 1930654655.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930571850.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 13681.7, 20200228.0, 'NAA8', 1930571850.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 6237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD us', 2020.0, 1930664908.0, '2020-03-17', 20200317, 20200317, '2020-04-06', 'USD', 'RV', 1.0, 240.4, 20200317.0, 'NAD1', 1930664908.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200085585, 'JOHN in', 2020.0, 1930876137.0, '2020-05-11', 20200507, 20200511, '2020-05-21', 'USD', 'RV', 1.0, 31133.52, 20200511.0, 'NA10', 1930876137.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930654938.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 6583.04, 20200317.0, 'NAA8', 1930654938.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD corp', 2020.0, 1930737920.0, '2020-04-02', 20200402, 20200402, '2020-04-22', 'USD', 'RV', 1.0, 3480.79, 20200402.0, 'NAD1', 1930737920.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930739743.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 80952.41, 20200403.0, 'NAH4', 1930739743.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US llc', 2020.0, 1930670144.0, '2020-03-18', 20200318, 20200318, '2020-04-19', 'USD', 'RV', 1.0, 18101.59, 20200318.0, 'NA32', 1930670144.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR co', 2020.0, 1930597831.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 89307.33, 20200303.0, 'NAA8', 1930597831.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 6244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT systems', 2020.0, 1930597318.0, '2020-03-04', 20200304, 20200304, '2020-04-08', 'USD', 'RV', 1.0, 15983.4, 20200304.0, 'NAG2', 1930597318.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 6245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930809089.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 16165.06, 20200423.0, 'NAH4', 1930809089.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930653768.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 18694.99, 20200316.0, 'NAA8', 1930653768.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 6247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930667550.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 7119.91, 20200319.0, 'NAH4', 1930667550.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO llc', 2020.0, 2960627538.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'CAD', 'RV', 1.0, 3349.35, 20200413.0, 'CA10', 2960627538.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 6249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA llc', 2020.0, 1930774539.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 9030.59, 20200410.0, 'NAA8', 1930774539.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930719437.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 52363.85, 20200331.0, 'NAH4', 1930719437.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930651896.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 4342.03, 20200316.0, 'NAH4', 1930651896.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930623928.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 37796.18, 20200310.0, 'NAH4', 1930623928.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930705185.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 16087.46, 20200325.0, 'NAH4', 1930705185.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930818462.0, '2020-04-22', 20200423, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 66432.08, 20200422.0, 'NAC6', 1930818462.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200915438, 'GROC associates', 2020.0, 1930739567.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 6503.91, 20200404.0, 'NAA8', 1930739567.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930796476.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 1255.88, 20200416.0, 'NAAX', 1930796476.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930585472.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 48084.63, 20200303.0, 'NAH4', 1930585472.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930854149.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 5623.01, 20200503.0, 'NAH4', 1930854149.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930631984.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 92821.21, 20200310.0, 'NAA8', 1930631984.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S ', 2020.0, 1930618638.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 104161.81, 20200307.0, 'NAA8', 1930618638.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA us', 2020.0, 1930855975.0, '2020-05-04', 20200504, 20200504, '2020-05-24', 'USD', 'RV', 1.0, 172.44, 20200501.0, 'NAM4', 1930855975.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 6262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930787191.0, '2020-04-16', 20200415, 20200416, '2020-05-06', 'USD', 'RV', 1.0, 86131.11, 20200416.0, 'NAD1', 1930787191.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M trust', 2020.0, 1930593419.0, '2020-03-04', 20200303, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 7142.92, 20200304.0, 'NAGD', 1930593419.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 6264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930635311.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 125614.85, 20200310.0, 'NAA8', 1930635311.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S corp', 2020.0, 1930627638.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 96323.18, 20200311.0, 'NAA8', 1930627638.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104995, 'MORTON in', 2020.0, 2960630749.0, '2020-04-30', 20200430, 20200430, '2020-05-12', 'CAD', 'RV', 1.0, 5046.7, 20200502.0, 'CA10', 2960630749.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 6267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL trust', 2020.0, 1930643293.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 1265.85, 20200313.0, 'NAA8', 1930643293.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930585612.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 21609.8, 20200303.0, 'NAC6', 1930585612.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 6269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU ', 2020.0, 1930772081.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 83149.21, 20200411.0, 'NAA8', 1930772081.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930718407.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 10952.12, 20200330.0, 'NAH4', 1930718407.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930653014.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 49124.13, 20200314.0, 'NAU5', 1930653014.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930855115.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 380.77, 20200504.0, 'NAA8', 1930855115.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930844055.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 17762.9, 20200501.0, 'NAA8', 1930844055.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930654950.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 20972.56, 20200316.0, 'NAH4', 1930654950.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE associates', 2020.0, 1930636560.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 74394.29, 20200311.0, 'NAA8', 1930636560.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930722812.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 54436.05, 20200330.0, 'NAU5', 1930722812.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930739935.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 42443.21, 20200404.0, 'NAA8', 1930739935.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 6278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930670263.0, '2020-03-20', 20200319, 20200320, '2020-05-24', 'USD', 'RV', 1.0, 13699.92, 20200320.0, 'NAGD', 1930670263.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE foundation', 2020.0, 1930678769.0, '2020-03-23', 20200320, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 179956.49, 20200323.0, 'NAA8', 1930678769.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930746665.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 23236.66, 20200405.0, 'NAH4', 1930746665.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR in', 2020.0, 1930851580.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 157902.17, 20200502.0, 'NAA8', 1930851580.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 6282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930820065.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 3467.32, 20200416.0, 'NAM4', 1930820065.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100017545, 'PERFOR foundation', 2020.0, 1930712248.0, '2020-04-16', 20200328, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 18167.4, 20200416.0, 'NAA8', 1930712248.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930749133.0, '2020-04-07', 20200404, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 31035.0, 20200407.0, 'NAH4', 1930749133.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930684509.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 14438.22, 20200323.0, 'NAH4', 1930684509.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR associates', 2020.0, 1930740075.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 15384.53, 20200403.0, 'NAA8', 1930740075.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930653087.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 328.64, 20200316.0, 'NAA8', 1930653087.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930637740.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 1118.59, 20200312.0, 'NAA8', 1930637740.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930715705.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 15004.29, 20200329.0, 'NAH4', 1930715705.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930719391.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 40019.16, 20200331.0, 'NAH4', 1930719391.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930855414.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 48202.05, 20200503.0, 'NAA8', 1930855414.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 6292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960617683.0, '2020-03-04', 20200304, 20200304, '2020-03-15', 'CAD', 'RV', 1.0, 239378.56, 20200305.0, 'CA10', 2960617683.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 6293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH llc', 2020.0, 1930672705.0, '2020-03-19', 20200319, 20200319, '2020-05-23', 'USD', 'RV', 1.0, 21484.68, 20200319.0, 'NAGD', 1930672705.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930671254.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 43438.18, 20200321.0, 'NAH4', 1930671254.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930783011.0, '2020-04-17', 20200414, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 4997.47, 20200417.0, 'NAA8', 1930783011.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA trust', 2020.0, 1930606967.0, '2020-03-05', 20200305, 20200305, '2020-03-08', 'USD', 'RV', 1.0, 30392.3, 20200301.0, 'NAM1', 1930606967.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 6297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930778949.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 51407.61, 20200413.0, 'NAAX', 1930778949.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930814644.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 18127.48, 20200423.0, 'NAA8', 1930814644.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930627622.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 913.09, 20200310.0, 'NAH4', 1930627622.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104440, 'SO foundation', 2020.0, 2960629165.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'CAD', 'RV', 1.0, 237973.32, 20200429.0, 'CA10', 2960629165.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 6301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930746694.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 17900.23, 20200405.0, 'NAH4', 1930746694.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 6302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY ', 2020.0, 1930858267.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 80779.55, 20200506.0, 'NAC6', 1930858267.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930621005.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 2090.86, 20200308.0, 'NAH4', 1930621005.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930780490.0, '2020-04-16', 20200413, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 16416.36, 20200416.0, 'NAA8', 1930780490.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 6305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE ', 2020.0, 1930722943.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 130031.31, 20200331.0, 'NAA8', 1930722943.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR co', 2020.0, 1930848082.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 17029.26, 20200503.0, 'NAA8', 1930848082.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 6307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930612439.0, '2020-03-06', 20200306, 20200306, '2020-03-24', 'USD', 'RV', 1.0, 432.54, 20200301.0, 'NAM4', 1930612439.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER associates', 2020.0, 1930813524.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 25068.1, 20200422.0, 'NAA8', 1930813524.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930655597.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 91783.05, 20200316.0, 'NAC6', 1930655597.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA llc', 2020.0, 1930877898.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 38805.89, 20200508.0, 'NAA8', 1930877898.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 6311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS systems', 2020.0, 1930817981.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 91177.13, 20200424.0, 'NAA8', 1930817981.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930619959.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 25636.24, 20200309.0, 'NAA8', 1930619959.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE associates', 2020.0, 1930651910.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 49336.55, 20200314.0, 'NAA8', 1930651910.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930581883.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 14013.12, 20200302.0, 'NAAX', 1930581883.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930879593.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 54998.52, 20200509.0, 'NAH4', 1930879593.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 6316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corp', 2020.0, 1930699722.0, '2020-03-28', 20200325, 20200328, '2020-04-17', 'USD', 'RV', 1.0, 157811.86, 20200328.0, 'NAD1', 1930699722.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930697985.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 14430.86, 20200325.0, 'NAH4', 1930697985.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930819107.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 3270.04, 20200424.0, 'NAH4', 1930819107.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200571849, 'US llc', 2020.0, 1930829918.0, '2020-05-01', 20200427, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 4938.21, 20200501.0, 'NAA8', 1930829918.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT in', 2020.0, 1930845023.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 88470.99, 20200430.0, 'NAA8', 1930845023.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 6321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930783032.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 35965.81, 20200415.0, 'NAH4', 1930783032.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930704623.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 2695.48, 20200326.0, 'NAH4', 1930704623.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930828752.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 7397.52, 20200427.0, 'NAA8', 1930828752.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769556, 'SHAM foundation', 2020.0, 1930610750.0, '2020-03-11', 20200306, 20200311, '2020-04-12', 'USD', 'RV', 1.0, 19904.6, 20200311.0, 'NA32', 1930610750.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797984, 'PIGGLY llc', 2020.0, 1930673230.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 21706.19, 20200320.0, 'NAA8', 1930673230.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930822938.0, '2020-04-24', 20200424, 20200424, '2020-04-26', 'USD', 'RV', 1.0, 2475.84, 20200416.0, 'NAM2', 1930822938.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET co', 2020.0, 1930729744.0, '2020-04-01', 20200401, 20200401, '2020-04-21', 'USD', 'RV', 1.0, 3554.45, 20200401.0, 'NAD1', 1930729744.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY systems', 2020.0, 1930683740.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 85388.17, 20200322.0, 'NAC6', 1930683740.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930597903.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 62112.31, 20200303.0, 'NAH4', 1930597903.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F corp', 2020.0, 1930594396.0, '2020-03-03', 20200303, 20200303, '2020-03-23', 'USD', 'RV', 1.0, 11562.48, 20200303.0, 'NAD1', 1930594396.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930593631.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 14458.5, 20200304.0, 'NAAX', 1930593631.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930575902.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 7925.68, 20200227.0, 'NAH4', 1930575902.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 6333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930614011.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 72768.15, 20200306.0, 'NAH4', 1930614011.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930586087.0, '2020-03-04', 20200302, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 6975.07, 20200304.0, 'NAGD', 1930586087.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 6335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930599581.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 17579.64, 20200301.0, 'NAM2', 1930599581.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 6336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930751257.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 12668.17, 20200407.0, 'NAH4', 1930751257.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200501669, 'WAL MA ', 2020.0, 1990571546.0, '2020-03-20', 20200318, 20200320, '2020-04-24', 'USD', 'RV', 1.0, 37988.63, 20200320.0, 'NAG2', 1990571546.0, 1, '2020-04-26', '0-15 days' ); /* INSERT QUERY NO: 6338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930689191.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 38586.43, 20200324.0, 'NAAX', 1930689191.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930808751.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 19911.13, 20200422.0, 'NAA8', 1930808751.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT us', 2020.0, 1930644066.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 53804.47, 20200312.0, 'NAA8', 1930644066.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930725181.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 9609.09, 20200401.0, 'NAH4', 1930725181.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930829748.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 8885.57, 20200428.0, 'NAH4', 1930829748.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER foundation', 2020.0, 1930833999.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 107130.31, 20200429.0, 'NAA8', 1930833999.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930643506.0, '2020-03-12', 20200312, 20200312, '2020-04-15', 'USD', 'RV', 1.0, 1957.48, 20200312.0, 'NAAW', 1930643506.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE co', 2020.0, 1930768769.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 68976.92, 20200409.0, 'NAA8', 1930768769.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930810283.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 13567.12, 20200422.0, 'NAA8', 1930810283.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 6347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930822668.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 2942.95, 20200425.0, 'NAA8', 1930822668.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 6348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA corporation', 2020.0, 1930659426.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 6546.41, 20200316.0, 'NAA8', 1930659426.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930610150.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 13925.99, 20200307.0, 'NAH4', 1930610150.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930794884.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 132648.36, 20200418.0, 'NAA8', 1930794884.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930599571.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 5780.38, 20200301.0, 'NAM4', 1930599571.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930885875.0, '2020-05-08', 20200511, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 37101.22, 20200508.0, 'NAH4', 1930885875.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 6353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930757474.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 36678.32, 20200407.0, 'NAAX', 1930757474.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA ', 2020.0, 1930739242.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 7378.23, 20200402.0, 'NAA8', 1930739242.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707741, 'SMART & in', 2020.0, 1930685821.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 59392.47, 20200324.0, 'NAA8', 1930685821.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100032178, 'DAVID ', 2020.0, 1930692011.0, '2020-03-25', 20200324, 20200325, '2020-04-14', 'USD', 'RV', 1.0, 75577.47, 20200325.0, 'NAD1', 1930692011.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783609, 'PROFIC trust', 2020.0, 1930880737.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 7281.36, 20200508.0, 'NAA8', 1930880737.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930644383.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 18600.9, 20200314.0, 'NAA8', 1930644383.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE llc', 2020.0, 2960620932.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 15337.12, 20200318.0, 'CA10', 2960620932.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 6360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT associates', 2020.0, 1930812894.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 84561.59, 20200421.0, 'NAA8', 1930812894.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930654125.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 209.29, 20200316.0, 'NAA8', 1930654125.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930665587.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 172464.87, 20200317.0, 'NAU5', 1930665587.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930700180.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 21997.1, 20200326.0, 'NAH4', 1930700180.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930692438.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 3909.86, 20200316.0, 'NAM4', 1930692438.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930829841.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 55015.54, 20200426.0, 'NAH4', 1930829841.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100034955, 'B & C F systems', 2020.0, 2960617773.0, '2020-03-01', 20200301, 20200301, '2020-03-20', 'CAD', 'RV', 1.0, 12443.7, 20200310.0, 'CA10', 2960617773.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 6367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE associates', 2020.0, 1930814156.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 47984.27, 20200424.0, 'NAA8', 1930814156.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 6368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930721720.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 8632.43, 20200331.0, 'NAH4', 1930721720.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930693354.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 666.31, 20200325.0, 'NAA8', 1930693354.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930797754.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 19429.13, 20200418.0, 'NAH4', 1930797754.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930812569.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 8357.29, 20200422.0, 'NAA8', 1930812569.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930659797.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 1898.9, 20200317.0, 'NAH4', 1930659797.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930621168.0, '2020-03-11', 20200308, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 18564.57, 20200311.0, 'NAC6', 1930621168.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930651967.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 15187.16, 20200315.0, 'NAH4', 1930651967.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930799525.0, '2020-04-20', 20200418, 20200420, '2020-06-24', 'USD', 'RV', 1.0, 10378.8, 20200420.0, 'NAGD', 1930799525.0, 1, '2020-06-19', 'early' ); /* INSERT QUERY NO: 6376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930693121.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 46773.38, 20200326.0, 'NAH4', 1930693121.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930825429.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 6229.44, 20200424.0, 'NAA8', 1930825429.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN corporation', 2020.0, 1930623882.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 65085.3, 20200311.0, 'NAA8', 1930623882.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930782905.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 1003.61, 20200414.0, 'NAA8', 1930782905.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930595943.0, '2020-03-06', 20200303, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 4590.91, 20200306.0, 'NAA8', 1930595943.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU llc', 2020.0, 1930784359.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 97004.71, 20200416.0, 'NAA8', 1930784359.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930814753.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 57730.64, 20200422.0, 'NAA8', 1930814753.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200561861, 'CO in', 2020.0, 1930649390.0, '2020-03-20', 20200313, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 20610.13, 20200320.0, 'NAA8', 1930649390.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930656102.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 1651.51, 20200315.0, 'NAA8', 1930656102.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705372, 'FR associates', 2020.0, 1930676197.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 18929.01, 20200323.0, 'NAA8', 1930676197.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200712102, 'SUGAR corporation', 2020.0, 1930605782.0, '2020-03-05', 20200305, 20200305, '2020-05-04', 'USD', 'RV', 1.0, 20653.57, 20200305.0, 'NAVQ', 1930605782.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 6387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST systems', 2020.0, 1930624764.0, '2020-03-10', 20200309, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 4012.03, 20200310.0, 'NAGD', 1930624764.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930860743.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 3270.04, 20200505.0, 'NAH4', 1930860743.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET trust', 2020.0, 1930665122.0, '2020-03-18', 20200318, 20200318, '2020-04-07', 'USD', 'RV', 1.0, 1202.43, 20200318.0, 'NAD1', 1930665122.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930712176.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 29677.79, 20200330.0, 'NAH4', 1930712176.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE us', 2020.0, 1930793143.0, '2020-04-16', 20200416, 20200416, '2020-06-20', 'USD', 'RV', 1.0, 5760.74, 20200416.0, 'NAGD', 1930793143.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 6392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930643280.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 15988.8, 20200313.0, 'NAC6', 1930643280.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930706759.0, '2020-03-26', 20200326, 20200326, '2020-04-27', 'USD', 'RV', 1.0, 2196.04, 20200326.0, 'NA32', 1930706759.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930785589.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 1762.77, 20200414.0, 'NAA8', 1930785589.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930597441.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 426.08, 20200304.0, 'NAA8', 1930597441.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930684547.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 48784.29, 20200324.0, 'NAH4', 1930684547.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL foundation', 2020.0, 1930582880.0, '2020-03-04', 20200301, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 37414.0, 20200304.0, 'NAA8', 1930582880.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 6398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930760956.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 62744.06, 20200409.0, 'NAH4', 1930760956.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930599474.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 15940.31, 20200301.0, 'NAM2', 1930599474.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 6400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corp', 2020.0, 1930781398.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 69705.69, 20200415.0, 'NAA8', 1930781398.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 6401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO trust', 2020.0, 1930642241.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 52412.41, 20200312.0, 'NAA8', 1930642241.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER co', 2020.0, 1930705548.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 9926.02, 20200325.0, 'NAA8', 1930705548.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960619213.0, '2020-03-07', 20200307, 20200307, '2020-03-26', 'CAD', 'RV', 1.0, 18409.2, 20200316.0, 'CA10', 2960619213.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 6404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR corp', 2020.0, 1930804771.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 7271.74, 20200421.0, 'NAA8', 1930804771.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930669369.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 84534.62, 20200319.0, 'NAU5', 1930669369.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930592137.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 33432.99, 20200303.0, 'NAH4', 1930592137.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR associates', 2020.0, 2960623204.0, '2020-03-21', 20200321, 20200321, '2020-04-01', 'CAD', 'RV', 1.0, 47.74, 20200322.0, 'CA10', 2960623204.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 6408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930641004.0, '2020-03-16', 20200311, 20200316, '2020-04-05', 'USD', 'RV', 1.0, 80495.61, 20200316.0, 'NA84', 1930641004.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - foundation', 2020.0, 1930699640.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 75621.09, 20200325.0, 'NAA8', 1930699640.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930778276.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 93285.96, 20200411.0, 'NAA8', 1930778276.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO corp', 2020.0, 2960630088.0, '2020-04-22', 20200422, 20200422, '2020-05-04', 'CAD', 'RV', 1.0, 4456.73, 20200424.0, 'CA10', 2960630088.0, 1, '2020-05-09', '0-15 days' ); /* INSERT QUERY NO: 6412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930760550.0, '2020-04-08', 20200408, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 11203.23, 20200408.0, 'NAGD', 1930760550.0, 1, '2020-06-09', 'early' ); /* INSERT QUERY NO: 6413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930711004.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 15047.21, 20200327.0, 'NAA8', 1930711004.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200789077, 'US systems', 2020.0, 1930593377.0, '2020-03-09', 20200303, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 32534.51, 20200309.0, 'NAA8', 1930593377.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA systems', 2020.0, 1930689882.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1648.94, 20200316.0, 'NAM4', 1930689882.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200735528, 'ASSOCIA foundation', 2020.0, 1930731462.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 23207.61, 20200403.0, 'NAA8', 1930731462.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030443, 'GLACIE llc', 2020.0, 1930838971.0, '2020-04-21', 20200429, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 4500.0, 20200421.0, 'NAA8', 1930838971.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930753294.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 292.29, 20200407.0, 'NAH4', 1930753294.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943275, 'US us', 2020.0, 1930599150.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 35614.91, 20200304.0, 'NAA8', 1930599150.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 6420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930846815.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 1414.69, 20200430.0, 'NAH4', 1930846815.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930780169.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 41310.52, 20200413.0, 'NAH4', 1930780169.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 6422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930832988.0, '2020-04-26', 20200428, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 65026.77, 20200426.0, 'NAA8', 1930832988.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930852136.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 57.76, 20200503.0, 'NAH4', 1930852136.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930692733.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 26575.19, 20200326.0, 'NAH4', 1930692733.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960628242.0, '2020-04-14', 20200414, 20200414, '2020-05-03', 'CAD', 'RV', 1.0, 121455.38, 20200423.0, 'CA10', 2960628242.0, 1, '2020-05-09', '0-15 days' ); /* INSERT QUERY NO: 6426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930576645.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 918.8, 20200229.0, 'NAH4', 1930576645.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 6427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930798875.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 35352.94, 20200420.0, 'NAH4', 1930798875.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M in', 2020.0, 1930808839.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 7558.9, 20200421.0, 'NAA8', 1930808839.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759082, 'INGL corporation', 2020.0, 1930866640.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 78908.03, 20200506.0, 'NAA8', 1930866640.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930617022.0, '2020-03-10', 20200306, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 14973.33, 20200310.0, 'NAH4', 1930617022.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930686739.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 13065.2, 20200323.0, 'NAH4', 1930686739.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET associates', 2020.0, 1930675743.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 8339.73, 20200320.0, 'NAA8', 1930675743.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930652382.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 30880.67, 20200315.0, 'NAH4', 1930652382.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200784489, 'GE corp', 2020.0, 1930735111.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 73191.85, 20200402.0, 'NAA8', 1930735111.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960625470.0, '2020-04-06', 20200406, 20200406, '2020-04-25', 'CAD', 'RV', 1.0, 127731.93, 20200415.0, 'CA10', 2960625470.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 6436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930671542.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 52890.87, 20200319.0, 'NAA8', 1930671542.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930838844.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 116296.48, 20200430.0, 'NAH4', 1930838844.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 6438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR associates', 2020.0, 1930635837.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 173663.55, 20200311.0, 'NAA8', 1930635837.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930675728.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 55482.23, 20200320.0, 'NAH4', 1930675728.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930670555.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 123604.93, 20200319.0, 'NAA8', 1930670555.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930749691.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 23557.75, 20200407.0, 'NAAX', 1930749691.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930611648.0, '2020-03-05', 20200306, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 1898.2, 20200305.0, 'NAH4', 1930611648.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930789660.0, '2020-04-17', 20200416, 20200417, '2020-06-21', 'USD', 'RV', 1.0, 14584.02, 20200417.0, 'NAGD', 1930789660.0, 1, '2020-06-18', 'early' ); /* INSERT QUERY NO: 6444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930830658.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 1886.24, 20200427.0, 'NAH4', 1930830658.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 6445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930825955.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 52175.76, 20200425.0, 'NAH4', 1930825955.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930724722.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 170.64, 20200331.0, 'NAA8', 1930724722.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930583808.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 33901.52, 20200301.0, 'NAH4', 1930583808.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER foundation', 2020.0, 1930605611.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 16298.08, 20200306.0, 'NAA8', 1930605611.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930674794.0, '2020-03-23', 20200320, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 52386.04, 20200323.0, 'NAA8', 1930674794.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960627356.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'CAD', 'RV', 1.0, 117429.68, 20200414.0, 'CA10', 2960627356.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 6451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT llc', 2020.0, 1930821966.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 11703.38, 20200423.0, 'NAA8', 1930821966.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE systems', 2020.0, 1930838855.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 37994.99, 20200430.0, 'NAA8', 1930838855.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 6453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA us', 2020.0, 1930693028.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 12646.1, 20200324.0, 'NAA8', 1930693028.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930772619.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 411.6, 20200410.0, 'NAA8', 1930772619.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930719446.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 32715.47, 20200330.0, 'NAAX', 1930719446.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719300, 'SYSTEMS trust', 2020.0, 1930627828.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 5480.55, 20200310.0, 'NAA8', 1930627828.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT systems', 2020.0, 1930823707.0, '2020-04-24', 20200424, 20200424, '2020-05-28', 'USD', 'RV', 1.0, 14256.26, 20200424.0, 'NAAW', 1930823707.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 6458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930752973.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 17602.46, 20200407.0, 'NAAX', 1930752973.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930749467.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 104365.79, 20200405.0, 'NAA8', 1930749467.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 6460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930845297.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 3270.04, 20200502.0, 'NAH4', 1930845297.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - co', 2020.0, 1930814638.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 37531.99, 20200422.0, 'NAA8', 1930814638.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930816120.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 34467.48, 20200422.0, 'NAA8', 1930816120.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930828931.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 146644.34, 20200428.0, 'NAA8', 1930828931.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE associates', 2020.0, 1930664492.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 39328.69, 20200318.0, 'NAA8', 1930664492.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930861967.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 2022.9, 20200506.0, 'NAAX', 1930861967.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 6466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930821479.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 49885.73, 20200423.0, 'NAA8', 1930821479.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930700810.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 39366.34, 20200325.0, 'NAA8', 1930700810.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA in', 2020.0, 1930685795.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 8331.46, 20200316.0, 'NAM4', 1930685795.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930757771.0, '2020-04-07', 20200407, 20200407, '2020-06-11', 'USD', 'RV', 1.0, 1457.56, 20200407.0, 'NAGD', 1930757771.0, 1, '2020-06-06', 'early' ); /* INSERT QUERY NO: 6470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930843336.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2169.37, 20200430.0, 'NAH4', 1930843336.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930654294.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 46669.63, 20200316.0, 'NAA8', 1930654294.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 6472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL foundation', 2020.0, 1930731928.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 63755.59, 20200402.0, 'NAA8', 1930731928.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960622731.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'CAD', 'RV', 1.0, 88769.96, 20200320.0, 'CA10', 2960622731.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 6474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER us', 2020.0, 1930856324.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 120878.38, 20200504.0, 'NAA8', 1930856324.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 6475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930642589.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 4149.71, 20200312.0, 'NAA8', 1930642589.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC ', 2020.0, 1930599385.0, '2020-03-04', 20200304, 20200304, '2020-03-08', 'USD', 'RV', 1.0, 20442.5, 20200301.0, 'NAM1', 1930599385.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 6477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200913718, 'TREEHOU ', 2020.0, 1930703613.0, '2020-03-26', 20200325, 20200326, '2020-04-25', 'USD', 'RV', 1.0, 40378.8, 20200326.0, 'NAD5', 1930703613.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST ', 2020.0, 1930685133.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 14772.55, 20200323.0, 'NAAX', 1930685133.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701314, 'MBM associates', 2020.0, 1930691575.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 18910.08, 20200325.0, 'NAA8', 1930691575.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B us', 2020.0, 1930768607.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 19919.09, 20200409.0, 'NAA8', 1930768607.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL llc', 2020.0, 1930738981.0, '2020-04-10', 20200403, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 509.27, 20200410.0, 'NAA8', 1930738981.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S ', 2020.0, 1930814180.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 3226.34, 20200422.0, 'NAA8', 1930814180.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corp', 2020.0, 1930713245.0, '2020-04-01', 20200328, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 49191.07, 20200401.0, 'NAA8', 1930713245.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD associates', 2020.0, 1930677127.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 990.04, 20200320.0, 'NAA8', 1930677127.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930808601.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 80723.75, 20200423.0, 'NAA8', 1930808601.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 6486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corporation', 2020.0, 1930660646.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 80448.41, 20200317.0, 'NAA8', 1930660646.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 6487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL trust', 2020.0, 1930717773.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 83413.35, 20200330.0, 'NAA8', 1930717773.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930832914.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 6663.73, 20200428.0, 'NAH4', 1930832914.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930796641.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 20160.0, 20200417.0, 'NAA8', 1930796641.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930605269.0, '2020-03-05', 20200305, 20200305, '2020-04-19', 'USD', 'RV', 1.0, 112978.66, 20200305.0, 'NAWP', 1930605269.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 6491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW us', 2020.0, 1930865695.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 103441.78, 20200506.0, 'NAA8', 1930865695.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930822732.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 590.83, 20200424.0, 'NAH4', 1930822732.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E systems', 2020.0, 1930863609.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 47559.05, 20200506.0, 'NAA8', 1930863609.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 6494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200768357, 'MARC foundation', 2020.0, 1930732935.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 99482.63, 20200403.0, 'NAA8', 1930732935.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960627209.0, '2020-04-06', 20200406, 20200406, '2020-04-16', 'CAD', 'RV', 1.0, 870.21, 20200406.0, 'CA10', 2960627209.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 6496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930848766.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 36033.23, 20200502.0, 'NAH4', 1930848766.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930794841.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 77.86, 20200418.0, 'NAH4', 1930794841.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930723671.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 49508.0, 20200401.0, 'NAH4', 1930723671.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930627444.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 9222.81, 20200311.0, 'NAA8', 1930627444.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC trust', 2020.0, 1930754533.0, '2020-04-06', 20200406, 20200406, '2020-04-24', 'USD', 'RV', 1.0, 192.84, 20200401.0, 'NAM4', 1930754533.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930739187.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 26910.32, 20200404.0, 'NAH4', 1930739187.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930773190.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 13789.98, 20200411.0, 'NAH4', 1930773190.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930860380.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 5397.93, 20200506.0, 'NAH4', 1930860380.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930825742.0, '2020-04-24', 20200425, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 54273.35, 20200424.0, 'NAH4', 1930825742.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930659846.0, '2020-03-18', 20200317, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 68833.71, 20200318.0, 'NAGD', 1930659846.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE corp', 2020.0, 1930727023.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 18659.64, 20200331.0, 'NAA8', 1930727023.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930653576.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 1356.55, 20200317.0, 'NAH4', 1930653576.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F corporation', 2020.0, 1930658217.0, '2020-03-20', 20200316, 20200320, '2020-03-20', 'USD', 'RV', 1.0, 39878.95, 20200320.0, 'NAX2', 1930658217.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 6509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA ', 2020.0, 1930828824.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 71042.72, 20200427.0, 'NAA8', 1930828824.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930733522.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 32169.27, 20200404.0, 'NAH4', 1930733522.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F foundation', 2020.0, 2960614260.0, '2020-02-28', 20200228, 20200228, '2020-03-10', 'CAD', 'RV', 1.0, 15057.7, 20200229.0, 'CA10', 2960614260.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 6512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930845400.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 43599.54, 20200502.0, 'NAH4', 1930845400.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930810911.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1322.22, 20200424.0, 'NAH4', 1930810911.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL trust', 2020.0, 1930630077.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 73728.47, 20200310.0, 'NAA8', 1930630077.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA trust', 2020.0, 1930777087.0, '2020-04-10', 20200411, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 14241.04, 20200410.0, 'NAA8', 1930777087.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930854663.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 4338.74, 20200503.0, 'NAH4', 1930854663.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA llc', 2020.0, 1930822065.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 6207.84, 20200416.0, 'NAM4', 1930822065.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 6518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO associates', 2020.0, 2960618802.0, '2020-03-04', 20200304, 20200304, '2020-03-16', 'CAD', 'RV', 1.0, 31877.68, 20200306.0, 'CA10', 2960618802.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 6519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930883343.0, '2020-05-11', 20200509, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 13014.3, 20200511.0, 'NAH4', 1930883343.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 6520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930763450.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 30900.47, 20200409.0, 'NAH4', 1930763450.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M trust', 2020.0, 1930643706.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 20475.8, 20200312.0, 'NAA8', 1930643706.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930769635.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 1343.1, 20200411.0, 'NAA8', 1930769635.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M ', 2020.0, 2960624891.0, '2020-04-01', 20200401, 20200401, '2020-04-11', 'CAD', 'RV', 1.0, 1891.77, 20200401.0, 'CA10', 2960624891.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 6524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA llc', 2020.0, 1930720285.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 13744.3, 20200330.0, 'NAA8', 1930720285.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930847235.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 134042.3, 20200501.0, 'NAU5', 1930847235.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 6526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO corporation', 2020.0, 1930597262.0, '2020-03-06', 20200303, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 4062.27, 20200306.0, 'NAA8', 1930597262.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930764669.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 16745.35, 20200409.0, 'NAH4', 1930764669.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930604285.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 42718.21, 20200304.0, 'NAU5', 1930604285.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 6529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930687483.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 58682.51, 20200323.0, 'NAH4', 1930687483.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corp', 2020.0, 1930620039.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 61509.78, 20200307.0, 'NAA8', 1930620039.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930607424.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 9022.93, 20200306.0, 'NAAX', 1930607424.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930752236.0, '2020-04-06', 20200406, 20200406, '2020-06-10', 'USD', 'RV', 1.0, 71336.64, 20200406.0, 'NAGD', 1930752236.0, 1, '2020-06-06', 'early' ); /* INSERT QUERY NO: 6533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960618353.0, '2020-03-04', 20200304, 20200304, '2020-03-14', 'CAD', 'RV', 1.0, 35859.84, 20200304.0, 'CA10', 2960618353.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 6534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930710462.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 4496.67, 20200328.0, 'NAH4', 1930710462.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105000, 'ITWA co', 2020.0, 2960623536.0, '2020-03-26', 20200326, 20200326, '2020-04-07', 'CAD', 'RV', 1.0, 76.65, 20200328.0, 'CA10', 2960623536.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 6536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930731387.0, '2020-04-04', 20200401, 20200404, '2020-05-19', 'USD', 'RV', 1.0, 128963.26, 20200404.0, 'NAWP', 1930731387.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 6537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH corporation', 2020.0, 1930738995.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 89804.46, 20200402.0, 'NAA8', 1930738995.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930661286.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 18854.79, 20200318.0, 'NAH4', 1930661286.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930638162.0, '2020-03-14', 20200311, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 72255.15, 20200314.0, 'NAC6', 1930638162.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930669524.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 44889.67, 20200320.0, 'NAH4', 1930669524.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930826572.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 58149.3, 20200426.0, 'NAH4', 1930826572.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930606280.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 16728.01, 20200306.0, 'NAC6', 1930606280.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100024776, 'PEA corp', 2020.0, 1930758306.0, '2020-04-14', 20200407, 20200414, '2020-05-19', 'USD', 'RV', 1.0, 7497.0, 20200414.0, 'NAG2', 1930758306.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930862526.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 32013.22, 20200506.0, 'NAH4', 1930862526.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 6545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930669588.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 10846.61, 20200319.0, 'NAH4', 1930669588.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC systems', 2020.0, 1930604837.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 32229.59, 20200304.0, 'NAA8', 1930604837.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 6547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER systems', 2020.0, 1930789125.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 50459.82, 20200415.0, 'NAA8', 1930789125.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 6548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930801340.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 16185.51, 20200421.0, 'NAC6', 1930801340.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930830755.0, '2020-05-02', 20200427, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 33547.1, 20200502.0, 'NAH4', 1930830755.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 6550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930772566.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 369.01, 20200411.0, 'NAH4', 1930772566.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930620768.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 108795.2, 20200309.0, 'NAC6', 1930620768.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930654395.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 10535.53, 20200316.0, 'NAC6', 1930654395.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE co', 2020.0, 1930692603.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 136118.91, 20200324.0, 'NAA8', 1930692603.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930752099.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 50116.64, 20200407.0, 'NAA8', 1930752099.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930710441.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 11744.86, 20200326.0, 'NAA8', 1930710441.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930718157.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 14530.22, 20200330.0, 'NAH4', 1930718157.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930637079.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 4821.77, 20200312.0, 'NAH4', 1930637079.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930870254.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 79097.83, 20200507.0, 'NAC6', 1930870254.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG in', 2020.0, 1930710920.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 15313.4, 20200327.0, 'NAA8', 1930710920.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930602631.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 37403.76, 20200305.0, 'NAA8', 1930602631.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960625879.0, '2020-04-04', 20200404, 20200404, '2020-04-23', 'CAD', 'RV', 1.0, 124387.47, 20200413.0, 'CA10', 2960625879.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 6562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960622741.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'CAD', 'RV', 1.0, 10089.8, 20200320.0, 'CA10', 2960622741.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 6563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200076137, 'OLLIE us', 2020.0, 1930850580.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 12348.0, 20200504.0, 'NAA8', 1930850580.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960622894.0, '2020-03-24', 20200324, 20200324, '2020-04-05', 'CAD', 'RV', 1.0, 61690.42, 20200326.0, 'CA10', 2960622894.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 6565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET us', 2020.0, 1930637738.0, '2020-03-16', 20200311, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 9459.34, 20200316.0, 'NAA8', 1930637738.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930738176.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 9190.82, 20200404.0, 'NAH4', 1930738176.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C corp', 2020.0, 1930779471.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 11139.83, 20200413.0, 'NAA8', 1930779471.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930683198.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 4821.77, 20200322.0, 'NAH4', 1930683198.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930724070.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 1991.84, 20200401.0, 'NAH4', 1930724070.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930777557.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 2230.58, 20200411.0, 'NAH4', 1930777557.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930688894.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 71114.24, 20200325.0, 'NAA8', 1930688894.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930705872.0, '2020-03-20', 20200326, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 16029.89, 20200320.0, 'NAA8', 1930705872.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930776929.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 56553.78, 20200411.0, 'NAA8', 1930776929.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200486270, 'BAR us', 2020.0, 1930619608.0, '2020-03-13', 20200307, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3836.08, 20200313.0, 'NAA8', 1930619608.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH llc', 2020.0, 1930715298.0, '2020-03-28', 20200328, 20200328, '2020-06-01', 'USD', 'RV', 1.0, 62085.47, 20200328.0, 'NAGD', 1930715298.0, 1, '2020-05-28', 'early' ); /* INSERT QUERY NO: 6576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930605913.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 667.57, 20200305.0, 'NAA8', 1930605913.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 6577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100035971, 'BON systems', 2020.0, 1930752871.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 53108.62, 20200406.0, 'NAA8', 1930752871.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M systems', 2020.0, 2960619609.0, '2020-03-07', 20200307, 20200307, '2020-03-17', 'CAD', 'RV', 1.0, 62673.93, 20200307.0, 'CA10', 2960619609.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 6579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC llc', 2020.0, 1930767722.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 401.76, 20200401.0, 'NAM4', 1930767722.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930642214.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 27720.65, 20200311.0, 'NAU5', 1930642214.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ foundation', 2020.0, 1930627704.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 16144.25, 20200309.0, 'NAA8', 1930627704.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100043902, 'THE P associates', 2020.0, 1930705864.0, '2020-03-26', 20200326, 20200326, '2020-04-26', 'USD', 'RV', 1.0, 15472.04, 20200326.0, 'NA3B', 1930705864.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930577525.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 19629.15, 20200227.0, 'NAH4', 1930577525.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 6584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M associates', 2020.0, 1930855260.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 98658.41, 20200503.0, 'NAA8', 1930855260.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930650989.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 8682.78, 20200314.0, 'NAH4', 1930650989.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930808372.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 3115.2, 20200422.0, 'NAA8', 1930808372.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 6587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930831747.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 62706.98, 20200428.0, 'NAH4', 1930831747.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930704011.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 78725.55, 20200325.0, 'NAA8', 1930704011.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930855055.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 539.64, 20200504.0, 'NAA8', 1930855055.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS llc', 2020.0, 1930687152.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 79019.73, 20200322.0, 'NAA8', 1930687152.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104249, 'SOB ', 2020.0, 2960627916.0, '2020-04-11', 20200411, 20200411, '2020-04-30', 'CAD', 'RV', 1.0, 54533.07, 20200420.0, 'CA10', 2960627916.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 6592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930883435.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 5694.6, 20200509.0, 'NAH4', 1930883435.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 6593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930817331.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 15798.25, 20200423.0, 'NAA8', 1930817331.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771555, 'SNYDE associates', 2020.0, 1930821601.0, '2020-04-28', 20200423, 20200428, '2020-05-08', 'USD', 'RV', 1.0, 56757.24, 20200428.0, 'NA10', 1930821601.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779719, 'FOOD 4 associates', 2020.0, 1930862299.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 17224.98, 20200507.0, 'NAA8', 1930862299.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930801259.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 3270.04, 20200418.0, 'NAH4', 1930801259.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930877685.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 16047.59, 20200508.0, 'NAH4', 1930877685.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 6598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930636549.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 44361.82, 20200311.0, 'NAH4', 1930636549.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH trust', 2020.0, 1930592672.0, '2020-03-02', 20200303, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 56093.54, 20200302.0, 'NAGD', 1930592672.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930605660.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 1612.15, 20200306.0, 'NAC6', 1930605660.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY us', 2020.0, 1930803356.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 84016.47, 20200422.0, 'NAC6', 1930803356.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO ', 2020.0, 2960629517.0, '2020-04-21', 20200421, 20200421, '2020-05-03', 'CAD', 'RV', 1.0, 153012.36, 20200423.0, 'CA10', 2960629517.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 6603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930879653.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 1414.68, 20200508.0, 'NAH4', 1930879653.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 6604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930717567.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 47646.57, 20200331.0, 'NAH4', 1930717567.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930608487.0, '2020-03-12', 20200305, 20200312, '2020-04-16', 'USD', 'RV', 1.0, 13732.74, 20200312.0, 'NAG2', 1930608487.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930813729.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 101620.8, 20200423.0, 'NAC6', 1930813729.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT associates', 2020.0, 1930570534.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 27022.42, 20200227.0, 'NAA8', 1930570534.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 6608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930707329.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 5959.77, 20200327.0, 'NAC6', 1930707329.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930860433.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 2169.37, 20200506.0, 'NAH4', 1930860433.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO ', 2020.0, 1930671107.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 114822.77, 20200319.0, 'NAA8', 1930671107.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M trust', 2020.0, 2960627684.0, '2020-04-16', 20200416, 20200416, '2020-04-26', 'CAD', 'RV', 1.0, 109956.39, 20200416.0, 'CA10', 2960627684.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 6612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930792397.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 329.28, 20200415.0, 'NAU5', 1930792397.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 6613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930732633.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 6532.6, 20200403.0, 'NAH4', 1930732633.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930620630.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 16306.58, 20200307.0, 'NAA8', 1930620630.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH in', 2020.0, 1930776732.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 40708.63, 20200410.0, 'NAA8', 1930776732.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769556, 'SHAM llc', 2020.0, 1930653088.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 15639.7, 20200317.0, 'NAA8', 1930653088.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930747424.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 11307.78, 20200404.0, 'NAH4', 1930747424.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930800843.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 20386.48, 20200420.0, 'NAU5', 1930800843.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 6619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE ', 2020.0, 1930748658.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 3650.4, 20200405.0, 'NAA8', 1930748658.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930711082.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 5290.27, 20200329.0, 'NAH4', 1930711082.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200789077, 'US llc', 2020.0, 1930799671.0, '2020-04-22', 20200418, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 16650.02, 20200422.0, 'NAA8', 1930799671.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930715599.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 22340.51, 20200330.0, 'NAH4', 1930715599.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742791, 'QUI co', 2020.0, 1930830393.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 68672.65, 20200428.0, 'NAA8', 1930830393.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078795, 'H T H ', 2020.0, 1930577065.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 18767.16, 20200227.0, 'NAA8', 1930577065.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 6625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & systems', 2020.0, 1930606243.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 38534.32, 20200306.0, 'NAA8', 1930606243.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930675279.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 45926.5, 20200321.0, 'NAH4', 1930675279.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960624833.0, '2020-03-28', 20200328, 20200328, '2020-04-07', 'CAD', 'RV', 1.0, 37797.22, 20200328.0, 'CA10', 2960624833.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 6628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930719989.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 1991.84, 20200331.0, 'NAH4', 1930719989.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT llc', 2020.0, 1930843107.0, '2020-05-01', 20200430, 20200501, '2020-05-21', 'USD', 'RV', 1.0, 9827.2, 20200501.0, 'NAD1', 1930843107.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 6630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST ', 2020.0, 1930874158.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 8245.59, 20200507.0, 'NAAX', 1930874158.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 6631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S ', 2020.0, 1930654576.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 614.59, 20200317.0, 'NAA8', 1930654576.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH in', 2020.0, 1930795043.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 83911.56, 20200417.0, 'NAA8', 1930795043.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792293, 'UNIFIE in', 2020.0, 1930665201.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 19716.02, 20200317.0, 'NAA8', 1930665201.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105508, 'DOLLARA us', 2020.0, 2960629738.0, '2020-04-20', 20200420, 20200420, '2020-05-02', 'CAD', 'RV', 1.0, 29541.6, 20200422.0, 'CA10', 2960629738.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 6635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930782638.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 61202.78, 20200414.0, 'NAH4', 1930782638.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742791, 'QUI foundation', 2020.0, 1930691216.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 36799.56, 20200325.0, 'NAA8', 1930691216.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS ', 2020.0, 1930800484.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 65581.26, 20200420.0, 'NAA8', 1930800484.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 6638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE corp', 2020.0, 1930793376.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 49233.7, 20200417.0, 'NAA8', 1930793376.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA foundation', 2020.0, 1930678223.0, '2020-03-24', 20200320, 20200324, '2020-04-23', 'USD', 'RV', 1.0, 31647.79, 20200324.0, 'NAD5', 1930678223.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930635628.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 15261.77, 20200312.0, 'NAA8', 1930635628.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930793831.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 82495.12, 20200415.0, 'NAC6', 1930793831.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 6642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930685709.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 43589.69, 20200324.0, 'NAH4', 1930685709.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930758360.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 27799.52, 20200407.0, 'NAH4', 1930758360.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930682692.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 9821.09, 20200322.0, 'NAH4', 1930682692.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930747050.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 62748.33, 20200405.0, 'NAH4', 1930747050.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- corp', 2020.0, 2960624684.0, '2020-03-29', 20200330, 20200329, '2020-04-17', 'CAD', 'RV', 1.0, 103975.5, 20200407.0, 'CA10', 2960624684.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 6647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930655417.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 31419.86, 20200317.0, 'NAH4', 1930655417.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC systems', 2020.0, 1930692355.0, '2020-03-24', 20200324, 20200324, '2020-03-26', 'USD', 'RV', 1.0, 2012.33, 20200316.0, 'NAM2', 1930692355.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO corp', 2020.0, 2960626534.0, '2020-04-07', 20200407, 20200407, '2020-04-18', 'CAD', 'RV', 1.0, 6604.15, 20200408.0, 'CA10', 2960626534.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 6650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930750614.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 1898.2, 20200405.0, 'NAH4', 1930750614.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930748612.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 1898.9, 20200405.0, 'NAH4', 1930748612.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 6652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930670088.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 3140.06, 20200320.0, 'NAH4', 1930670088.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078854, 'MC A in', 2020.0, 1930725616.0, '2020-04-06', 20200331, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 13688.06, 20200406.0, 'NAA8', 1930725616.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER trust', 2020.0, 1930585333.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 16681.28, 20200302.0, 'NAA8', 1930585333.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 6655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930584877.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 1898.2, 20200301.0, 'NAH4', 1930584877.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930714595.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 1596.98, 20200327.0, 'NAA8', 1930714595.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930577165.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 25418.01, 20200228.0, 'NAC6', 1930577165.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 6658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200875006, 'KROGER systems', 2020.0, 1930719761.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 100394.45, 20200330.0, 'NAA8', 1930719761.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930592891.0, '2020-03-04', 20200303, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 3431.41, 20200304.0, 'NAGD', 1930592891.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930684244.0, '2020-03-24', 20200321, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 14572.72, 20200324.0, 'NAH4', 1930684244.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930799221.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 100685.73, 20200418.0, 'NAC6', 1930799221.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 6662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930800901.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 39065.69, 20200420.0, 'NAH4', 1930800901.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA llc', 2020.0, 1930693027.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 3149.51, 20200324.0, 'NAA8', 1930693027.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930652859.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 107214.97, 20200316.0, 'NAA8', 1930652859.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 6665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930777770.0, '2020-04-14', 20200411, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 15888.04, 20200414.0, 'NAH4', 1930777770.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200609331, 'KROG systems', 2020.0, 1930823731.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 16584.28, 20200424.0, 'NAA8', 1930823731.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corporation', 2020.0, 1930570139.0, '2020-02-27', 20200226, 20200227, '2020-05-02', 'USD', 'RV', 1.0, 64691.67, 20200227.0, 'NAGD', 1930570139.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 6668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930717134.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 420.65, 20200330.0, 'NAH4', 1930717134.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763489, 'GENERAL ', 2020.0, 1930796849.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 121260.16, 20200417.0, 'NAA8', 1930796849.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930716756.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 20970.08, 20200330.0, 'NAH4', 1930716756.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930857492.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 4008.5, 20200505.0, 'NAA8', 1930857492.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 6672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT us', 2020.0, 1930688018.0, '2020-03-25', 20200323, 20200325, '2020-04-29', 'USD', 'RV', 1.0, 14406.72, 20200325.0, 'NAG2', 1930688018.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930645645.0, '2020-03-16', 20200312, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 11208.68, 20200316.0, 'NAA8', 1930645645.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS foundation', 2020.0, 1930764907.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 19529.52, 20200410.0, 'NAA8', 1930764907.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA systems', 2020.0, 1930719352.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 27720.76, 20200330.0, 'NAA8', 1930719352.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930739879.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 2949.87, 20200405.0, 'NAA8', 1930739879.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930877464.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 3042.63, 20200501.0, 'NAM4', 1930877464.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 6678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA corp', 2020.0, 1930642772.0, '2020-03-12', 20200312, 20200312, '2020-04-01', 'USD', 'RV', 1.0, 1170.9, 20200312.0, 'NAD1', 1930642772.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930795070.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 2615.87, 20200416.0, 'NAU5', 1930795070.0, 1, '2020-05-02', '0-15 days' ); /* INSERT QUERY NO: 6680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930753405.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 4720.02, 20200407.0, 'NAH4', 1930753405.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE us', 2020.0, 1930611021.0, '2020-03-13', 20200306, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 10657.71, 20200313.0, 'NAA8', 1930611021.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930779678.0, '2020-04-07', 20200413, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 972.1, 20200407.0, 'NAA8', 1930779678.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930732475.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 13789.99, 20200403.0, 'NAH4', 1930732475.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930789283.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 44277.38, 20200416.0, 'NAH4', 1930789283.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 6685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU co', 2020.0, 1930706713.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 48758.11, 20200328.0, 'NAA8', 1930706713.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO corporation', 2020.0, 2960631096.0, '2020-04-30', 20200430, 20200430, '2020-05-12', 'CAD', 'RV', 1.0, 3131.02, 20200502.0, 'CA10', 2960631096.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930624176.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 14303.07, 20200311.0, 'NAA8', 1930624176.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930746944.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 11442.17, 20200404.0, 'NAH4', 1930746944.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB in', 2020.0, 2960626161.0, '2020-04-02', 20200402, 20200402, '2020-04-12', 'CAD', 'RV', 1.0, 19318.04, 20200402.0, 'CA10', 2960626161.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 6690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930691894.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 610.4, 20200324.0, 'NAA8', 1930691894.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 6691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930692276.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 81392.27, 20200324.0, 'NAU5', 1930692276.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200778998, 'CE foundation', 2020.0, 1930737960.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 34704.74, 20200403.0, 'NAA8', 1930737960.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR associates', 2020.0, 1930725277.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 81765.29, 20200402.0, 'NAA8', 1930725277.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930788440.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 1898.9, 20200416.0, 'NAH4', 1930788440.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 6695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930604288.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 582.67, 20200305.0, 'NAA8', 1930604288.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 6696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930819020.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 8319.22, 20200424.0, 'NAH4', 1930819020.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960628870.0, '2020-04-18', 20200418, 20200418, '2020-04-29', 'CAD', 'RV', 1.0, 38436.89, 20200419.0, 'CA10', 2960628870.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 6698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930766818.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 26257.67, 20200408.0, 'NAU5', 1930766818.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT llc', 2020.0, 1930840833.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 66594.51, 20200429.0, 'NAA8', 1930840833.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 6700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA co', 2020.0, 1930696220.0, '2020-03-25', 20200325, 20200325, '2020-04-08', 'USD', 'RV', 1.0, 5946.54, 20200316.0, 'NAM4', 1930696220.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER corp', 2020.0, 1930691665.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 73142.1, 20200324.0, 'NAA8', 1930691665.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930774242.0, '2020-04-05', 20200410, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 226.11, 20200405.0, 'NAA8', 1930774242.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 6703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930593195.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 20637.48, 20200304.0, 'NAH4', 1930593195.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930855198.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 3368.59, 20200504.0, 'NAH4', 1930855198.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corporation', 2020.0, 1930601090.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 2830.47, 20200305.0, 'NAA8', 1930601090.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S corporation', 2020.0, 1930810797.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 22657.84, 20200421.0, 'NAA8', 1930810797.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 6707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930802252.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 2260.4, 20200420.0, 'NAH4', 1930802252.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930703357.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 47810.09, 20200326.0, 'NAH4', 1930703357.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930768010.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 3742.19, 20200410.0, 'NAH4', 1930768010.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS us', 2020.0, 1930636636.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 54229.27, 20200310.0, 'NAA8', 1930636636.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200553372, 'VITC systems', 2020.0, 1930598540.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 44409.78, 20200303.0, 'NAA8', 1930598540.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 6712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR llc', 2020.0, 1930641920.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 91490.42, 20200312.0, 'NAA8', 1930641920.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930750310.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 13569.72, 20200405.0, 'NAH4', 1930750310.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA in', 2020.0, 1930842243.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 14631.35, 20200502.0, 'NAH4', 1930842243.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 6715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930576480.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 78347.98, 20200227.0, 'NAA8', 1930576480.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 6716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930846835.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 17046.42, 20200502.0, 'NAH4', 1930846835.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930654152.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 138.75, 20200316.0, 'NAA8', 1930654152.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 6718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200725421, 'BEN co', 2020.0, 1930584924.0, '2020-03-03', 20200229, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 20865.77, 20200303.0, 'NAA8', 1930584924.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 6719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930687237.0, '2020-03-23', 20200323, 20200323, '2020-05-27', 'USD', 'RV', 1.0, 1116.0, 20200323.0, 'NAGD', 1930687237.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 6720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO foundation', 2020.0, 2960622412.0, '2020-03-18', 20200318, 20200318, '2020-03-30', 'CAD', 'RV', 1.0, 3023.35, 20200320.0, 'CA10', 2960622412.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 6721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930885800.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 45738.67, 20200511.0, 'NAH4', 1930885800.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 6722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930838760.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 32.13, 20200430.0, 'NAA8', 1930838760.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 6723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960623500.0, '2020-03-23', 20200323, 20200323, '2020-04-03', 'CAD', 'RV', 1.0, 207270.14, 20200324.0, 'CA10', 2960623500.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 6724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960619689.0, '2020-03-10', 20200310, 20200310, '2020-03-29', 'CAD', 'RV', 1.0, 122608.08, 20200319.0, 'CA10', 2960619689.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 6725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930690458.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 24187.57, 20200324.0, 'NAA8', 1930690458.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL foundation', 2020.0, 1930833614.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 2138.53, 20200505.0, 'NAA8', 1930833614.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER us', 2020.0, 1930670715.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 100307.88, 20200318.0, 'NAA8', 1930670715.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930797898.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 6926.88, 20200418.0, 'NAH4', 1930797898.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930819014.0, '2020-04-22', 20200423, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 23794.84, 20200422.0, 'NAH4', 1930819014.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 6730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930592805.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 471.56, 20200302.0, 'NAH4', 1930592805.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930615236.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 2671.33, 20200306.0, 'NAU5', 1930615236.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 6732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC systems', 2020.0, 1930862677.0, '2020-05-06', 20200506, 20200506, '2020-05-24', 'USD', 'RV', 1.0, 102.84, 20200501.0, 'NAM4', 1930862677.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 6733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930618742.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 3426.42, 20200307.0, 'NAH4', 1930618742.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930855599.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 13699.78, 20200505.0, 'NAH4', 1930855599.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S systems', 2020.0, 1930667443.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 339.28, 20200319.0, 'NAA8', 1930667443.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE corp', 2020.0, 1930800143.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 96897.39, 20200418.0, 'NAA8', 1930800143.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930683049.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 15379.98, 20200322.0, 'NAH4', 1930683049.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M us', 2020.0, 1930637926.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 26512.91, 20200311.0, 'NAA8', 1930637926.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930798990.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 1845.06, 20200418.0, 'NAH4', 1930798990.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930576929.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 15918.7, 20200228.0, 'NAH4', 1930576929.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 6741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930648062.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 55147.9, 20200313.0, 'NAH4', 1930648062.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 6742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930576011.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 6270.37, 20200228.0, 'NAH4', 1930576011.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 6743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930708685.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 17181.63, 20200327.0, 'NAH4', 1930708685.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930837494.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 11417.63, 20200430.0, 'NAA8', 1930837494.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 6745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- llc', 2020.0, 2960628545.0, '2020-04-15', 20200415, 20200415, '2020-05-04', 'CAD', 'RV', 1.0, 86638.25, 20200424.0, 'CA10', 2960628545.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 6746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930679089.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 106.67, 20200321.0, 'NAH4', 1930679089.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930843001.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 46189.42, 20200501.0, 'NAH4', 1930843001.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 6748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930802200.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 42896.52, 20200419.0, 'NAU5', 1930802200.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930690922.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 4668.21, 20200324.0, 'NAA8', 1930690922.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS corporation', 2020.0, 1930773404.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 102566.69, 20200410.0, 'NAA8', 1930773404.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET corporation', 2020.0, 1930623818.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 5823.33, 20200309.0, 'NAA8', 1930623818.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH associates', 2020.0, 1930671318.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 21557.31, 20200320.0, 'NAA8', 1930671318.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200231309, 'SHERWO corp', 2020.0, 1930788006.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 33994.8, 20200415.0, 'NAA8', 1930788006.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930715901.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 18022.29, 20200330.0, 'NAH4', 1930715901.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA us', 2020.0, 1930814164.0, '2020-04-24', 20200422, 20200424, '2020-05-24', 'USD', 'RV', 1.0, 25240.89, 20200424.0, 'NAD5', 1930814164.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO corp', 2020.0, 1930565686.0, '2020-02-27', 20200225, 20200227, '2020-03-30', 'USD', 'RV', 1.0, 39051.94, 20200227.0, 'NA32', 1930565686.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930822476.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 32890.62, 20200425.0, 'NAC6', 1930822476.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE systems', 2020.0, 1930779059.0, '2020-04-15', 20200416, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 36100.7, 20200415.0, 'NAA8', 1930779059.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 6759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930686335.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 104640.37, 20200322.0, 'NAA8', 1930686335.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR corporation', 2020.0, 1930629590.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 63289.53, 20200310.0, 'NAA8', 1930629590.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0100052832, 'NORTH foundation', 2020.0, 1990572028.0, '2020-03-29', 20200330, 20200329, '2020-04-28', 'USD', 'RV', 1.0, 5167.84, 20200329.0, 'NA38', 1990572028.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH corp', 2020.0, 1930833217.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 57161.22, 20200428.0, 'NAA8', 1930833217.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930855215.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 142.89, 20200504.0, 'NAA8', 1930855215.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930881176.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 46155.53, 20200510.0, 'NAH4', 1930881176.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 6765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR in', 2020.0, 1930777467.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 18179.34, 20200413.0, 'NAA8', 1930777467.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930641099.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 1898.2, 20200314.0, 'NAH4', 1930641099.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930676234.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 2352.97, 20200321.0, 'NAH4', 1930676234.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100001196, 'DOLLAR trust', 2020.0, 1930852414.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 32477.0, 20200503.0, 'NAA8', 1930852414.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M ', 2020.0, 2960623229.0, '2020-03-22', 20200322, 20200322, '2020-04-01', 'CAD', 'RV', 1.0, 3603.85, 20200322.0, 'CA10', 2960623229.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 6770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER ', 2020.0, 1930582017.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 52398.56, 20200228.0, 'NAA8', 1930582017.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 6771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ associates', 2020.0, 1930687467.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 3163.46, 20200323.0, 'NAA8', 1930687467.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE corp', 2020.0, 1930629722.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 147964.63, 20200311.0, 'NAA8', 1930629722.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'HEINZ systems', 2020.0, 1991840457.0, '2020-03-19', 20200319, 20200319, '2020-05-03', 'USD', 'RV', 1.0, 27079.53, 20200319.0, 'NAVF', 1991840457.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 6774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930593457.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 72536.55, 20200304.0, 'NAH4', 1930593457.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC in', 2020.0, 2960617618.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'CAD', 'RV', 1.0, 135.2, 20200304.0, 'CA10', 2960617618.0, 1, '2020-03-15', '0-15 days' ); /* INSERT QUERY NO: 6776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960626390.0, '2020-04-06', 20200406, 20200406, '2020-04-17', 'CAD', 'RV', 1.0, 50105.12, 20200407.0, 'CA10', 2960626390.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 6777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960621744.0, '2020-03-19', 20200319, 20200319, '2020-04-06', 'CAD', 'RV', 1.0, 208062.87, 20200327.0, 'CA10', 2960621744.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 6778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC ', 2020.0, 1930773300.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 2550.17, 20200401.0, 'NAM4', 1930773300.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930854168.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 585.91, 20200504.0, 'NAA8', 1930854168.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR corp', 2020.0, 2960616763.0, '2020-03-02', 20200302, 20200302, '2020-03-14', 'CAD', 'RV', 1.0, 235.16, 20200304.0, 'CA10', 2960616763.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 6781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930751616.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 1329.23, 20200407.0, 'NAH4', 1930751616.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930892941.0, '2020-05-12', 20200512, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 15162.68, 20200512.0, 'NAH4', 1930892941.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 6783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930805283.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 39518.02, 20200421.0, 'NAH4', 1930805283.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 6784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930798892.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 18266.26, 20200419.0, 'NAH4', 1930798892.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930822910.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 1895.93, 20200425.0, 'NAH4', 1930822910.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930860361.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 2642.79, 20200505.0, 'NAA8', 1930860361.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 6787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL trust', 2020.0, 1930773733.0, '2020-04-13', 20200410, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 21300.0, 20200413.0, 'NAA8', 1930773733.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930753204.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 48378.15, 20200407.0, 'NAH4', 1930753204.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 6789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930756818.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 61051.29, 20200406.0, 'NAAX', 1930756818.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930806251.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 26751.71, 20200422.0, 'NAH4', 1930806251.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 6791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930731172.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 37546.51, 20200401.0, 'NAH4', 1930731172.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930576187.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 271.06, 20200227.0, 'NAH4', 1930576187.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 6793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO associates', 2020.0, 2960625468.0, '2020-04-06', 20200406, 20200406, '2020-04-16', 'CAD', 'RV', 1.0, 83271.41, 20200406.0, 'CA10', 2960625468.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 6794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930778623.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 3033.14, 20200412.0, 'NAA8', 1930778623.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792734, 'MDV/ corp', 2020.0, 1930838406.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 47302.61, 20200429.0, 'NAA8', 1930838406.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930732255.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 62993.81, 20200402.0, 'NAH4', 1930732255.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930746923.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 11021.67, 20200406.0, 'NAA8', 1930746923.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW trust', 2020.0, 1930796503.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 51342.9, 20200416.0, 'NAA8', 1930796503.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930645165.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 17385.33, 20200313.0, 'NAH4', 1930645165.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 6800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corporation', 2020.0, 1930704353.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 21756.94, 20200328.0, 'NAA8', 1930704353.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC in', 2020.0, 1930681945.0, '2020-03-21', 20200321, 20200321, '2020-03-26', 'USD', 'RV', 1.0, 2966.51, 20200316.0, 'NAM2', 1930681945.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930814981.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 1420.88, 20200423.0, 'NAH4', 1930814981.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930577042.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 39867.72, 20200227.0, 'NAH4', 1930577042.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 6804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT ', 2020.0, 1930739191.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 14972.47, 20200405.0, 'NAA8', 1930739191.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 6805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA corporation', 2020.0, 1930654086.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 13818.74, 20200315.0, 'NAA8', 1930654086.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200434439, 'BAUGH SU systems', 2020.0, 1930605290.0, '2020-03-11', 20200305, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 547.88, 20200311.0, 'NAA8', 1930605290.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930619707.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 4272.16, 20200308.0, 'NAH4', 1930619707.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930608289.0, '2020-03-08', 20200305, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 15047.97, 20200308.0, 'NAA8', 1930608289.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930859035.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 495.0, 20200507.0, 'NAA8', 1930859035.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930827157.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 12439.02, 20200426.0, 'NAH4', 1930827157.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA us', 2020.0, 1930762704.0, '2020-04-08', 20200408, 20200408, '2020-04-11', 'USD', 'RV', 1.0, 11884.41, 20200401.0, 'NAM2', 1930762704.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corp', 2020.0, 1930724701.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 6450.8, 20200331.0, 'NAA8', 1930724701.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930819490.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 9388.3, 20200424.0, 'NAH4', 1930819490.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930572491.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 376.68, 20200228.0, 'NAA8', 1930572491.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 6815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930622755.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 16354.06, 20200310.0, 'NAH4', 1930622755.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930714852.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 36029.11, 20200330.0, 'NAH4', 1930714852.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200580232, 'INTERR corp', 2020.0, 1930774418.0, '2020-04-09', 20200410, 20200409, '2020-04-19', 'USD', 'RV', 1.0, 11760.0, 20200409.0, 'NA10', 1930774418.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & llc', 2020.0, 1930807971.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 12252.23, 20200420.0, 'NAA8', 1930807971.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 6819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930656027.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 52677.74, 20200316.0, 'NAH4', 1930656027.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930598348.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 32.36, 20200304.0, 'NAH4', 1930598348.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA us', 2020.0, 1930611446.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 34414.99, 20200307.0, 'NAA8', 1930611446.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE associates', 2020.0, 1930840983.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 3470.2, 20200504.0, 'NAA8', 1930840983.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930828110.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 23747.29, 20200426.0, 'NAC6', 1930828110.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930781264.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 2961.52, 20200414.0, 'NAH4', 1930781264.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 6825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930679352.0, '2020-03-23', 20200320, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 196257.61, 20200323.0, 'NAA8', 1930679352.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930857811.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 1389.66, 20200507.0, 'NAA8', 1930857811.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corp', 2020.0, 1930617841.0, '2020-03-07', 20200307, 20200307, '2020-03-08', 'USD', 'RV', 1.0, 5729.0, 20200301.0, 'NAM1', 1930617841.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 6828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100009932, 'SYSCO IN in', 2020.0, 1991840561.0, '2020-03-24', 20200320, 20200324, '2020-04-23', 'USD', 'RV', 1.0, 1314.0, 20200324.0, 'NAVE', 1991840561.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 6829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930615245.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 60037.98, 20200308.0, 'NAH4', 1930615245.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930779336.0, '2020-04-17', 20200412, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 4341.39, 20200417.0, 'NAH4', 1930779336.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 6831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930884426.0, '2020-05-11', 20200510, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 18630.36, 20200511.0, 'NAH4', 1930884426.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 6832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930768528.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 3888.81, 20200409.0, 'NAH4', 1930768528.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930693941.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 63029.37, 20200326.0, 'NAH4', 1930693941.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930762259.0, '2020-04-08', 20200408, 20200408, '2020-04-11', 'USD', 'RV', 1.0, 14680.88, 20200401.0, 'NAM2', 1930762259.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- llc', 2020.0, 2960632547.0, '2020-05-03', 20200503, 20200503, '2020-05-22', 'CAD', 'RV', 1.0, 41188.34, 20200512.0, 'CA10', 2960632547.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 6836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930823935.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1898.9, 20200424.0, 'NAH4', 1930823935.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930798772.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 66479.21, 20200419.0, 'NAH4', 1930798772.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M llc', 2020.0, 1930675796.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 61310.63, 20200320.0, 'NAA8', 1930675796.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET in', 2020.0, 1930729568.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 295.71, 20200401.0, 'NAA8', 1930729568.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930747489.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 33194.19, 20200405.0, 'NAH4', 1930747489.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100058011, 'SPLASH ', 2020.0, 1930713839.0, '2020-03-27', 20200327, 20200327, '2020-04-28', 'USD', 'RV', 1.0, 6531.87, 20200327.0, 'NA32', 1930713839.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M us', 2020.0, 1930802192.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 36552.18, 20200420.0, 'NAA8', 1930802192.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 6843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930819702.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 56061.12, 20200425.0, 'NAH4', 1930819702.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930859906.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 943.12, 20200505.0, 'NAH4', 1930859906.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 6845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930740271.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 9514.48, 20200404.0, 'NAA8', 1930740271.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 6846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930766033.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 8053.69, 20200408.0, 'NAAX', 1930766033.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 6847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO associates', 2020.0, 2960621247.0, '2020-03-17', 20200317, 20200317, '2020-03-28', 'CAD', 'RV', 1.0, 47538.46, 20200318.0, 'CA10', 2960621247.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 6848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200833713, 'JETRO associates', 2020.0, 1930665118.0, '2020-03-18', 20200318, 20200318, '2020-04-07', 'USD', 'RV', 1.0, 4327.25, 20200318.0, 'NAD1', 1930665118.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S systems', 2020.0, 1930662174.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 225.53, 20200317.0, 'NAA8', 1930662174.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL llc', 2020.0, 1930673451.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 108687.23, 20200320.0, 'NAA8', 1930673451.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930659859.0, '2020-03-16', 20200317, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 14987.18, 20200316.0, 'NAU5', 1930659859.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC associates', 2020.0, 1930861638.0, '2020-05-06', 20200506, 20200506, '2020-05-11', 'USD', 'RV', 1.0, 3752.74, 20200501.0, 'NAM2', 1930861638.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930879345.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 21030.39, 20200508.0, 'NAH4', 1930879345.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 6854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL systems', 2020.0, 1930822663.0, '2020-04-29', 20200424, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 11252.66, 20200429.0, 'NAA8', 1930822663.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 6855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930834261.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 12616.91, 20200430.0, 'NAH4', 1930834261.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE llc', 2020.0, 1930646643.0, '2020-03-13', 20200313, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 5963.71, 20200313.0, 'NAGD', 1930646643.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 6857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE systems', 2020.0, 1930789947.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 853.44, 20200417.0, 'NAA8', 1930789947.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO foundation', 2020.0, 2960621074.0, '2020-03-17', 20200317, 20200317, '2020-03-29', 'CAD', 'RV', 1.0, 39348.04, 20200319.0, 'CA10', 2960621074.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 6859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100049079, 'ESSEX in', 2020.0, 1930819066.0, '2020-04-29', 20200423, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 2141.22, 20200429.0, 'NAA8', 1930819066.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO corporation', 2020.0, 2960619202.0, '2020-03-06', 20200306, 20200306, '2020-03-19', 'CAD', 'RV', 1.0, 20738.69, 20200309.0, 'CA10', 2960619202.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 6861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930729421.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 1898.2, 20200402.0, 'NAH4', 1930729421.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 6862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930744184.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 907.95, 20200403.0, 'NAA8', 1930744184.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M co', 2020.0, 2960622431.0, '2020-03-19', 20200319, 20200319, '2020-03-30', 'CAD', 'RV', 1.0, 80764.16, 20200320.0, 'CA10', 2960622431.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 6864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT in', 2020.0, 1930849407.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 1775.94, 20200501.0, 'NAA8', 1930849407.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 6865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC in', 2020.0, 1930618804.0, '2020-03-07', 20200307, 20200307, '2020-03-11', 'USD', 'RV', 1.0, 8675.68, 20200301.0, 'NAM2', 1930618804.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 6866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M ', 2020.0, 2960621182.0, '2020-03-18', 20200318, 20200318, '2020-03-29', 'CAD', 'RV', 1.0, 38805.38, 20200319.0, 'CA10', 2960621182.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 6867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930855817.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 16016.88, 20200504.0, 'NAH4', 1930855817.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200390794, 'CASH-W in', 2020.0, 1930809859.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 26125.08, 20200421.0, 'NAA8', 1930809859.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 6869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930768760.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 95636.42, 20200409.0, 'NAA8', 1930768760.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC co', 2020.0, 1930818211.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 1241.61, 20200416.0, 'NAM1', 1930818211.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930651368.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 17668.85, 20200316.0, 'NAH4', 1930651368.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930797397.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 27713.53, 20200419.0, 'NAH4', 1930797397.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930661185.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 13426.04, 20200319.0, 'NAH4', 1930661185.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930782802.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 524.58, 20200414.0, 'NAA8', 1930782802.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930829104.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 471.56, 20200426.0, 'NAH4', 1930829104.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930674719.0, '2020-03-20', 20200320, 20200320, '2020-03-23', 'USD', 'RV', 1.0, 10241.39, 20200316.0, 'NAM1', 1930674719.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 6877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY systems', 2020.0, 1930683740.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 85388.17, 20200322.0, 'NAC6', 1930683740.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930599639.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 1179.47, 20200301.0, 'NAM4', 1930599639.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US corporation', 2020.0, 1930798374.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 10117.39, 20200417.0, 'NAA8', 1930798374.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 6880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930774071.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 59629.33, 20200411.0, 'NAH4', 1930774071.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930769327.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 77960.26, 20200411.0, 'NAH4', 1930769327.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930583287.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 26871.36, 20200229.0, 'NAH4', 1930583287.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 6883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO corp', 2020.0, 2960625920.0, '2020-03-31', 20200331, 20200331, '2020-04-12', 'CAD', 'RV', 1.0, 24290.69, 20200402.0, 'CA10', 2960625920.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 6884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930635723.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 14228.45, 20200311.0, 'NAH4', 1930635723.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 6885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930699409.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 55276.67, 20200326.0, 'NAC6', 1930699409.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930637616.0, '2020-03-11', 20200311, 20200311, '2020-04-12', 'USD', 'RV', 1.0, 10786.19, 20200311.0, 'NA32', 1930637616.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 6887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930572453.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 19416.98, 20200228.0, 'NAH4', 1930572453.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 6888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721222, 'GO co', 2020.0, 1930672640.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 44956.27, 20200319.0, 'NAA8', 1930672640.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 6889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER trust', 2020.0, 1930800671.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 67837.0, 20200418.0, 'NAA8', 1930800671.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 6890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769556, 'SHAM llc', 2020.0, 1930855240.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 14737.29, 20200505.0, 'NAA8', 1930855240.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930781361.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 531.86, 20200413.0, 'NAA8', 1930781361.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140101772, 'CHIHAD foundation', 2020.0, 1991840388.0, '2020-04-19', 20200415, 20200419, '2020-05-19', 'USD', 'RV', 1.0, 955.7, 20200419.0, 'NAVE', 1991840388.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 6893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930699476.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 26024.9, 20200326.0, 'NAAX', 1930699476.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930646984.0, '2020-03-15', 20200313, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 37918.76, 20200315.0, 'NAH4', 1930646984.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930719983.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 6409.68, 20200331.0, 'NAH4', 1930719983.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100049079, 'ESSEX corporation', 2020.0, 1930709409.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 9800.16, 20200327.0, 'NAA8', 1930709409.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930584429.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 294.43, 20200301.0, 'NAA8', 1930584429.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 6898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100044010, 'LAND foundation', 2020.0, 1930764906.0, '2020-04-09', 20200408, 20200409, '2020-05-11', 'USD', 'RV', 1.0, 46490.22, 20200409.0, 'NA32', 1930764906.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930738140.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 12788.24, 20200403.0, 'NAH4', 1930738140.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL us', 2020.0, 1930641950.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 22983.35, 20200312.0, 'NAA8', 1930641950.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 6901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT foundation', 2020.0, 1930676668.0, '2020-03-21', 20200320, 20200321, '2020-04-25', 'USD', 'RV', 1.0, 13948.2, 20200321.0, 'NAG2', 1930676668.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930645908.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 15809.98, 20200314.0, 'NAH4', 1930645908.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 6903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930607214.0, '2020-03-05', 20200305, 20200305, '2020-03-25', 'USD', 'RV', 1.0, 21966.55, 20200305.0, 'NAD1', 1930607214.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930767485.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 21824.03, 20200409.0, 'NAH4', 1930767485.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 6905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR us', 2020.0, 1930643320.0, '2020-03-17', 20200312, 20200317, '2020-05-21', 'USD', 'RV', 1.0, 14500.28, 20200317.0, 'NAGD', 1930643320.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 6906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100057168, 'CO corp', 2020.0, 1930838111.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 66245.31, 20200430.0, 'NAA8', 1930838111.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200622385, 'US corporation', 2020.0, 1930593413.0, '2020-03-02', 20200303, 20200302, '2020-04-03', 'USD', 'RV', 1.0, 43358.64, 20200302.0, 'NA32', 1930593413.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790710, 'F associates', 2020.0, 1930691716.0, '2020-03-27', 20200324, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 472.79, 20200327.0, 'NAA8', 1930691716.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 6909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930592189.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 106.67, 20200304.0, 'NAH4', 1930592189.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930844165.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 18875.51, 20200502.0, 'NAH4', 1930844165.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930716329.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 26849.11, 20200329.0, 'NAH4', 1930716329.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930808973.0, '2020-04-18', 20200421, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 30902.83, 20200418.0, 'NAA8', 1930808973.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930776535.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 17614.23, 20200412.0, 'NAH4', 1930776535.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 6914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930716938.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 102072.81, 20200329.0, 'NAC6', 1930716938.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930739006.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 78380.0, 20200403.0, 'NAA8', 1930739006.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO systems', 2020.0, 2960623236.0, '2020-03-23', 20200323, 20200323, '2020-04-03', 'CAD', 'RV', 1.0, 154203.16, 20200324.0, 'CA10', 2960623236.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 6917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930800315.0, '2020-04-23', 20200418, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 6663.09, 20200423.0, 'NAH4', 1930800315.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930690508.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 780.0, 20200316.0, 'NAM4', 1930690508.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 6919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930668396.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 70791.22, 20200321.0, 'NAH4', 1930668396.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100052024, 'CPG co', 2020.0, 1930630653.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 8387.4, 20200310.0, 'NAA8', 1930630653.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 6921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721222, 'GO trust', 2020.0, 1930767578.0, '2020-04-09', 20200409, 20200409, '2020-06-13', 'USD', 'RV', 1.0, 16869.08, 20200409.0, 'NAGD', 1930767578.0, 1, '2020-06-10', 'early' ); /* INSERT QUERY NO: 6922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE corporation', 2020.0, 1930768836.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 23356.8, 20200410.0, 'NAA8', 1930768836.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - systems', 2020.0, 1930733704.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 55223.27, 20200402.0, 'NAA8', 1930733704.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 6924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930691783.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 26659.81, 20200326.0, 'NAH4', 1930691783.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 6925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930876257.0, '2020-05-07', 20200507, 20200507, '2020-05-11', 'USD', 'RV', 1.0, 2628.47, 20200501.0, 'NAM2', 1930876257.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930752558.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 56349.0, 20200405.0, 'NAH4', 1930752558.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793513, 'KROGER systems', 2020.0, 1930706111.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 47277.59, 20200326.0, 'NAA8', 1930706111.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 6928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930716897.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 41252.24, 20200331.0, 'NAH4', 1930716897.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106293, 'ATLANT in', 2020.0, 2960616791.0, '2020-03-07', 20200307, 20200307, '2020-03-25', 'CAD', 'RV', 1.0, 6084.88, 20200315.0, 'CA10', 2960616791.0, 1, '2020-03-30', '0-15 days' ); /* INSERT QUERY NO: 6930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - ', 2020.0, 1930719356.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 101507.44, 20200330.0, 'NAA8', 1930719356.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930757564.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 44591.71, 20200407.0, 'NAU5', 1930757564.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782772, 'ASSOC G us', 2020.0, 1930655703.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 17523.44, 20200317.0, 'NAA8', 1930655703.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930782167.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 1740.79, 20200414.0, 'NAA8', 1930782167.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 6934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739941, 'FOX in', 2020.0, 1930737314.0, '2020-04-10', 20200402, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 19460.58, 20200410.0, 'NAA8', 1930737314.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930673822.0, '2020-03-23', 20200319, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 8206.89, 20200323.0, 'NAAX', 1930673822.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930718713.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 3951.01, 20200330.0, 'NAH4', 1930718713.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 6937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200895983, 'TRUIT ', 2020.0, 1930712130.0, '2020-04-01', 20200330, 20200401, '2020-05-11', 'USD', 'RV', 1.0, 16936.8, 20200401.0, 'NAD4', 1930712130.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 6938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930709600.0, '2020-03-27', 20200327, 20200327, '2020-05-31', 'USD', 'RV', 1.0, 187.91, 20200327.0, 'NAGD', 1930709600.0, 1, '2020-05-27', 'early' ); /* INSERT QUERY NO: 6939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100031628, 'COLDST us', 2020.0, 2960632291.0, '2020-05-04', 20200504, 20200504, '2020-05-23', 'CAD', 'RV', 1.0, 12684.96, 20200513.0, 'CA10', 2960632291.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 6940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036538, 'DENVER systems', 2020.0, 1930768922.0, '2020-04-14', 20200409, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 2316.0, 20200414.0, 'NAA8', 1930768922.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930820293.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 48196.7, 20200423.0, 'NAA8', 1930820293.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 6942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930831192.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 4237.49, 20200427.0, 'NAA8', 1930831192.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 6943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930617863.0, '2020-03-08', 20200307, 20200308, '2020-05-12', 'USD', 'RV', 1.0, 8646.21, 20200308.0, 'NAGD', 1930617863.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943275, 'US us', 2020.0, 1930809464.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 5192.76, 20200421.0, 'NAA8', 1930809464.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930601279.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 44964.03, 20200305.0, 'NAA8', 1930601279.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930716863.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 747.44, 20200329.0, 'NAH4', 1930716863.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200076137, 'OLLIE ', 2020.0, 1930693179.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 21033.54, 20200326.0, 'NAA8', 1930693179.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 6948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797984, 'PIGGLY trust', 2020.0, 1930718614.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 79135.91, 20200331.0, 'NAA8', 1930718614.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE systems', 2020.0, 1930829407.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 78601.22, 20200428.0, 'NAA8', 1930829407.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930760995.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 75579.1, 20200412.0, 'NAA8', 1930760995.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930618773.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 32899.88, 20200308.0, 'NAH4', 1930618773.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930828643.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 142.89, 20200427.0, 'NAA8', 1930828643.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930714814.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 1898.2, 20200327.0, 'NAH4', 1930714814.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930683122.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 17033.43, 20200322.0, 'NAA8', 1930683122.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930787944.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 582.5, 20200415.0, 'NAH4', 1930787944.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 6956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100058011, 'SPLASH ', 2020.0, 1930713839.0, '2020-03-27', 20200327, 20200327, '2020-04-28', 'USD', 'RV', 1.0, 6531.87, 20200327.0, 'NA32', 1930713839.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100032505, 'KEHE associates', 2020.0, 1930880172.0, '2020-05-13', 20200508, 20200513, '2020-05-28', 'USD', 'RV', 1.0, 3542.5, 20200513.0, 'NAA8', 1930880172.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 6958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930800544.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 11825.4, 20200419.0, 'NAH4', 1930800544.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 6959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200774000, 'RALEY in', 2020.0, 1930725028.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 63866.12, 20200331.0, 'NAA8', 1930725028.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 6960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930859602.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 22503.73, 20200504.0, 'NAC6', 1930859602.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 6961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER trust', 2020.0, 1930875755.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 92959.29, 20200507.0, 'NAA8', 1930875755.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100024776, 'PEA us', 2020.0, 1930796625.0, '2020-04-21', 20200416, 20200421, '2020-05-26', 'USD', 'RV', 1.0, 13626.6, 20200421.0, 'NAG2', 1930796625.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 6963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL in', 2020.0, 1930766860.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 83850.34, 20200409.0, 'NAA8', 1930766860.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 6964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS us', 2020.0, 1930777530.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 58730.49, 20200411.0, 'NAA8', 1930777530.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - llc', 2020.0, 1930796191.0, '2020-04-17', 20200417, 20200417, '2020-06-21', 'USD', 'RV', 1.0, 34548.16, 20200417.0, 'NAGD', 1930796191.0, 1, '2020-06-18', 'early' ); /* INSERT QUERY NO: 6966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930571624.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 8562.55, 20200227.0, 'NAAX', 1930571624.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 6967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960627829.0, '2020-04-09', 20200409, 20200409, '2020-04-19', 'CAD', 'RV', 1.0, 63512.54, 20200409.0, 'CA10', 2960627829.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 6968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930854041.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 42586.92, 20200504.0, 'NAH4', 1930854041.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 6969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE trust', 2020.0, 1930641945.0, '2020-03-11', 20200312, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 52222.28, 20200311.0, 'NAA8', 1930641945.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corporation', 2020.0, 2960628008.0, '2020-04-09', 20200409, 20200409, '2020-04-29', 'CAD', 'RV', 1.0, 51760.8, 20200419.0, 'CA10', 2960628008.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 6971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG associates', 2020.0, 1930650652.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 44287.32, 20200313.0, 'NAA8', 1930650652.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 6972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930685052.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 4522.49, 20200322.0, 'NAAX', 1930685052.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 6973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA foundation', 2020.0, 1930587895.0, '2020-03-02', 20200302, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 1320.78, 20200302.0, 'NAGD', 1930587895.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 6974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930624987.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 10915.94, 20200310.0, 'NAH4', 1930624987.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 6975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN corp', 2020.0, 1930656032.0, '2020-03-19', 20200316, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 5402.1, 20200319.0, 'NAA8', 1930656032.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 6976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930581898.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 17273.83, 20200301.0, 'NAH4', 1930581898.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 6977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE co', 2020.0, 1930719737.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 114817.61, 20200331.0, 'NAA8', 1930719737.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 6978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930598544.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 65436.93, 20200304.0, 'NAH4', 1930598544.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 6979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930774258.0, '2020-04-08', 20200410, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 126.92, 20200408.0, 'NAA8', 1930774258.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 6980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930583136.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 39313.44, 20200229.0, 'NAH4', 1930583136.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 6981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930718901.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 24920.38, 20200330.0, 'NAH4', 1930718901.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 6982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930859315.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 51239.66, 20200506.0, 'NAA8', 1930859315.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 6983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA co', 2020.0, 1930617682.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 101288.08, 20200308.0, 'NAA8', 1930617682.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 6984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200331749, 'SYSC us', 2020.0, 1930845208.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 10712.76, 20200430.0, 'NAA8', 1930845208.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 6985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA in', 2020.0, 1930758769.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 15665.17, 20200407.0, 'NAA8', 1930758769.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 6986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930793135.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 99.54, 20200416.0, 'NAA8', 1930793135.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 6987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA associates', 2020.0, 1930593870.0, '2020-03-05', 20200304, 20200305, '2020-04-04', 'USD', 'RV', 1.0, 71261.55, 20200305.0, 'NAD5', 1930593870.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930774168.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 6522.91, 20200412.0, 'NAA8', 1930774168.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO ', 2020.0, 1930679346.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 44495.8, 20200320.0, 'NAA8', 1930679346.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 6990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930692775.0, '2020-03-25', 20200324, 20200325, '2020-05-29', 'USD', 'RV', 1.0, 7777.02, 20200325.0, 'NAGD', 1930692775.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 6991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corporation', 2020.0, 2960625195.0, '2020-04-05', 20200405, 20200405, '2020-04-17', 'CAD', 'RV', 1.0, 27395.0, 20200407.0, 'CA10', 2960625195.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 6992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC corporation', 2020.0, 2960620942.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 947.0, 20200318.0, 'CA10', 2960620942.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 6993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930829043.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 3179.92, 20200426.0, 'NAH4', 1930829043.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 6994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930610323.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 997.27, 20200306.0, 'NAH4', 1930610323.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 6995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930819028.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 130.81, 20200424.0, 'NAH4', 1930819028.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 6996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN corp', 2020.0, 1930776974.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 32525.1, 20200413.0, 'NAA8', 1930776974.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 6997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960629516.0, '2020-04-19', 20200419, 20200419, '2020-05-08', 'CAD', 'RV', 1.0, 126767.39, 20200428.0, 'CA10', 2960629516.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 6998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200790107, 'ROU ', 2020.0, 1930670466.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 137247.86, 20200318.0, 'NAC6', 1930670466.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 6999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO corporation', 2020.0, 2960628429.0, '2020-04-14', 20200414, 20200414, '2020-04-26', 'CAD', 'RV', 1.0, 17010.04, 20200416.0, 'CA10', 2960628429.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 7000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930581449.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 57168.84, 20200228.0, 'NAH4', 1930581449.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930830918.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 648.59, 20200428.0, 'NAA8', 1930830918.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK trust', 2020.0, 1930813284.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 58980.5, 20200422.0, 'NAA8', 1930813284.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960618744.0, '2020-03-05', 20200305, 20200305, '2020-03-17', 'CAD', 'RV', 1.0, 63373.77, 20200307.0, 'CA10', 2960618744.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 7004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739006, 'AL corp', 2020.0, 1930829523.0, '2020-05-01', 20200427, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 10177.12, 20200501.0, 'NAA8', 1930829523.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104472, 'MARTIN corp', 2020.0, 2960621045.0, '2020-03-16', 20200316, 20200316, '2020-04-04', 'CAD', 'RV', 1.0, 8075.52, 20200325.0, 'CA10', 2960621045.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 7006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727272, 'BROOKS corporation', 2020.0, 1930586744.0, '2020-03-02', 20200302, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 7129.04, 20200302.0, 'NAGD', 1930586744.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930822105.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 1932.54, 20200423.0, 'NAA8', 1930822105.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930761007.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 166394.47, 20200408.0, 'NAC6', 1930761007.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W trust', 2020.0, 1930581164.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 44350.95, 20200228.0, 'NAC6', 1930581164.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 7010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C associates', 2020.0, 1930659421.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 38238.38, 20200317.0, 'NAA8', 1930659421.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 7011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930629497.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 603.99, 20200311.0, 'NAA8', 1930629497.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930683956.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 14984.08, 20200321.0, 'NAA8', 1930683956.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930759183.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 24835.1, 20200407.0, 'NAU5', 1930759183.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA llc', 2020.0, 1930605974.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 1097.7, 20200301.0, 'NAM4', 1930605974.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930585485.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 99723.6, 20200301.0, 'NAA8', 1930585485.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 7016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200437182, 'FOOD associates', 2020.0, 1930724520.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 50612.44, 20200401.0, 'NAA8', 1930724520.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930617509.0, '2020-03-11', 20200306, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 9222.81, 20200311.0, 'NAA8', 1930617509.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930799848.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 13960.81, 20200418.0, 'NAU5', 1930799848.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 7019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930827297.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 19506.48, 20200427.0, 'NAA8', 1930827297.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200773364, 'U R M corp', 2020.0, 1930783837.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 55433.55, 20200415.0, 'NAA8', 1930783837.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 7021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930615233.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 42293.29, 20200306.0, 'NAU5', 1930615233.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200736337, 'SYSCO F corp', 2020.0, 1930668354.0, '2020-03-27', 20200318, 20200327, '2020-04-16', 'USD', 'RV', 1.0, 1952.08, 20200327.0, 'NAD1', 1930668354.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA foundation', 2020.0, 1930690670.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 329.94, 20200316.0, 'NAM4', 1930690670.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930800249.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 1345.33, 20200419.0, 'NAH4', 1930800249.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930828822.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 104224.27, 20200426.0, 'NAU5', 1930828822.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 7026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT co', 2020.0, 1930726971.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 113939.5, 20200401.0, 'NAA8', 1930726971.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930774795.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 68606.48, 20200412.0, 'NAH4', 1930774795.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930884525.0, '2020-05-10', 20200510, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 12597.62, 20200510.0, 'NAH4', 1930884525.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 7029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930787953.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 138742.19, 20200414.0, 'NAC6', 1930787953.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100055068, 'WALT associates', 2020.0, 1991841830.0, '2020-03-10', 20200325, 20200310, '2020-03-31', 'USD', 'RV', 1.0, 22095.7, 20200310.0, 'NAUW', 1991841830.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 7031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930729246.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 30910.4, 20200401.0, 'NAH4', 1930729246.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 7032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930861816.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 58802.91, 20200506.0, 'NAA8', 1930861816.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930769139.0, '2020-04-12', 20200409, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 15138.07, 20200412.0, 'NAH4', 1930769139.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930861456.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 42766.16, 20200508.0, 'NAH4', 1930861456.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 7035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930840992.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 47926.43, 20200430.0, 'NAH4', 1930840992.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 7036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930782658.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 23674.56, 20200413.0, 'NAU5', 1930782658.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930584303.0, '2020-02-28', 20200229, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 15310.05, 20200228.0, 'NAH4', 1930584303.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO foundation', 2020.0, 2960622442.0, '2020-03-20', 20200320, 20200320, '2020-04-03', 'CAD', 'RV', 1.0, 47640.39, 20200324.0, 'CA10', 2960622442.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 7039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930704968.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 83476.5, 20200326.0, 'NAAX', 1930704968.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE in', 2020.0, 1930758598.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 130301.75, 20200407.0, 'NAA8', 1930758598.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200983712, 'FAMOS trust', 2020.0, 1930706110.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 50681.75, 20200327.0, 'NAA8', 1930706110.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200724999, 'GILSTE associates', 2020.0, 1930843130.0, '2020-04-30', 20200430, 20200430, '2020-05-10', 'USD', 'RV', 1.0, 50970.45, 20200430.0, 'NA10', 1930843130.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930794285.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 121583.53, 20200417.0, 'NAA8', 1930794285.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200637319, 'DIRECT systems', 2020.0, 1930792858.0, '2020-04-22', 20200415, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 6240.0, 20200422.0, 'NAA8', 1930792858.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER corporation', 2020.0, 1930827515.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 71932.5, 20200426.0, 'NAA8', 1930827515.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930684548.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 59692.0, 20200324.0, 'NAH4', 1930684548.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930847428.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 471.56, 20200501.0, 'NAH4', 1930847428.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930688843.0, '2020-03-21', 20200323, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 1018.8, 20200321.0, 'NAA8', 1930688843.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA foundation', 2020.0, 1930790987.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 47076.0, 20200416.0, 'NAA8', 1930790987.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930682691.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 58187.52, 20200323.0, 'NAH4', 1930682691.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 7051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930814550.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 86724.93, 20200421.0, 'NAU5', 1930814550.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC co', 2020.0, 1930599257.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 108.72, 20200301.0, 'NAM4', 1930599257.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960630645.0, '2020-04-26', 20200426, 20200426, '2020-05-08', 'CAD', 'RV', 1.0, 47545.8, 20200428.0, 'CA10', 2960630645.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 7054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930598454.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 31876.77, 20200305.0, 'NAH4', 1930598454.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930781223.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 89916.98, 20200413.0, 'NAA8', 1930781223.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200750051, 'ALBER corp', 2020.0, 1930638272.0, '2020-03-12', 20200311, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 62181.2, 20200312.0, 'NAGD', 1930638272.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US trust', 2020.0, 1930647468.0, '2020-03-18', 20200313, 20200318, '2020-04-07', 'USD', 'RV', 1.0, 25072.31, 20200318.0, 'NAD1', 1930647468.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE llc', 2020.0, 1930838367.0, '2020-04-27', 20200429, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 4667.77, 20200427.0, 'NAA8', 1930838367.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corp', 2020.0, 1930765384.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 371.04, 20200401.0, 'NAM4', 1930765384.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930777645.0, '2020-04-14', 20200411, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 15968.2, 20200414.0, 'NAH4', 1930777645.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930745495.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 13135.6, 20200406.0, 'NAH4', 1930745495.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930676078.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 18553.7, 20200322.0, 'NAA8', 1930676078.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200711029, 'WEGMAN co', 2020.0, 1930859353.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 86431.41, 20200505.0, 'NAA8', 1930859353.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W associates', 2020.0, 1930685973.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 63581.79, 20200324.0, 'NAC6', 1930685973.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- associates', 2020.0, 2960619388.0, '2020-03-12', 20200312, 20200312, '2020-03-23', 'CAD', 'RV', 1.0, 5461.62, 20200313.0, 'CA10', 2960619388.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 7066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC co', 2020.0, 1930812630.0, '2020-04-22', 20200422, 20200422, '2020-04-26', 'USD', 'RV', 1.0, 13265.07, 20200416.0, 'NAM2', 1930812630.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930672124.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 18592.81, 20200321.0, 'NAA8', 1930672124.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930581664.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 24883.16, 20200228.0, 'NAA8', 1930581664.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 7069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705372, 'FR corp', 2020.0, 1930685117.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 4338.29, 20200323.0, 'NAA8', 1930685117.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT associates', 2020.0, 1930751009.0, '2020-04-04', 20200405, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 1409.12, 20200404.0, 'NAA8', 1930751009.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930709925.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 6249.92, 20200327.0, 'NAA8', 1930709925.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930823210.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 35.4, 20200416.0, 'NAM4', 1930823210.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930780905.0, '2020-04-12', 20200413, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 1250.5, 20200412.0, 'NAA8', 1930780905.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE systems', 2020.0, 1930599969.0, '2020-03-09', 20200304, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 101793.63, 20200309.0, 'NAA8', 1930599969.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE systems', 2020.0, 2960629075.0, '2020-04-20', 20200420, 20200420, '2020-05-02', 'CAD', 'RV', 1.0, 28498.8, 20200422.0, 'CA10', 2960629075.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 7076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960625702.0, '2020-03-31', 20200331, 20200331, '2020-04-10', 'CAD', 'RV', 1.0, 30.22, 20200331.0, 'CAX2', 2960625702.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 7077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS us', 2020.0, 1930671034.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 41482.11, 20200318.0, 'NAA8', 1930671034.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930813776.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1329.23, 20200424.0, 'NAH4', 1930813776.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100024102, 'FELI ', 2020.0, 1991841429.0, '2020-03-29', 20200325, 20200329, '2020-04-28', 'USD', 'RV', 1.0, 12083.0, 20200329.0, 'NAVE', 1991841429.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 7080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930629363.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 348.23, 20200310.0, 'NAA8', 1930629363.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930830760.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 7015.07, 20200428.0, 'NAA8', 1930830760.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930814435.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 124284.97, 20200423.0, 'NAA8', 1930814435.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO llc', 2020.0, 2960617985.0, '2020-03-03', 20200303, 20200303, '2020-03-13', 'CAD', 'RV', 1.0, 9210.55, 20200303.0, 'CA10', 2960617985.0, 1, '2020-03-18', '0-15 days' ); /* INSERT QUERY NO: 7084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930611152.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 1898.9, 20200307.0, 'NAH4', 1930611152.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA in', 2020.0, 1930719734.0, '2020-03-31', 20200330, 20200331, '2020-04-30', 'USD', 'RV', 1.0, 71136.24, 20200331.0, 'NAD5', 1930719734.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930794793.0, '2020-04-16', 20200416, 20200416, '2020-05-18', 'USD', 'RV', 1.0, 3681.15, 20200416.0, 'NA32', 1930794793.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE trust', 2020.0, 1930763967.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 109776.73, 20200409.0, 'NAA8', 1930763967.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030964, 'NATURA corporation', 2020.0, 1930637667.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 20728.2, 20200311.0, 'NAA8', 1930637667.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 7089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930600180.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 26719.42, 20200306.0, 'NAH4', 1930600180.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK trust', 2020.0, 1930827336.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 60185.18, 20200425.0, 'NAA8', 1930827336.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930686848.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 6540.08, 20200323.0, 'NAH4', 1930686848.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930584696.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 111648.13, 20200303.0, 'NAA8', 1930584696.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930751260.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 63843.63, 20200406.0, 'NAC6', 1930751260.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930585899.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 41992.33, 20200302.0, 'NAH4', 1930585899.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930692928.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 4124.42, 20200325.0, 'NAAX', 1930692928.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930796315.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 53912.95, 20200416.0, 'NAA8', 1930796315.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 7097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC foundation', 2020.0, 1930856789.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 5896.26, 20200501.0, 'NAM4', 1930856789.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 7098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200777735, 'NASH trust', 2020.0, 1930861929.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 40673.35, 20200505.0, 'NAA8', 1930861929.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 7099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR in', 2020.0, 1930857952.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 11187.89, 20200505.0, 'NAA8', 1930857952.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930731480.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 3432.2, 20200403.0, 'NAA8', 1930731480.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930796340.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 23939.66, 20200418.0, 'NAH4', 1930796340.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930587197.0, '2020-03-02', 20200302, 20200302, '2020-04-05', 'USD', 'RV', 1.0, 18790.88, 20200302.0, 'NAAW', 1930587197.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD corporation', 2020.0, 1930587727.0, '2020-03-02', 20200302, 20200302, '2020-03-22', 'USD', 'RV', 1.0, 6661.69, 20200302.0, 'NAD1', 1930587727.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930731601.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 98874.63, 20200402.0, 'NAAX', 1930731601.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930665955.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 39605.79, 20200317.0, 'NAC6', 1930665955.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 7106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F in', 2020.0, 1930646260.0, '2020-03-13', 20200313, 20200313, '2020-04-02', 'USD', 'RV', 1.0, 88540.01, 20200313.0, 'NAD1', 1930646260.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930862706.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 19739.91, 20200506.0, 'NAH4', 1930862706.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 7108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930845214.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 36348.62, 20200501.0, 'NAH4', 1930845214.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719300, 'SYSTEMS foundation', 2020.0, 1930814490.0, '2020-04-24', 20200422, 20200424, '2020-05-14', 'USD', 'RV', 1.0, 13824.0, 20200424.0, 'NAD1', 1930814490.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 7110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930677183.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 9719.47, 20200322.0, 'NAH4', 1930677183.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930818801.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 7212.33, 20200424.0, 'NAA8', 1930818801.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL llc', 2020.0, 1930586936.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 113456.27, 20200303.0, 'NAA8', 1930586936.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW ', 2020.0, 1930774108.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 17432.31, 20200409.0, 'NAA8', 1930774108.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930655307.0, '2020-03-17', 20200316, 20200317, '2020-04-20', 'USD', 'RV', 1.0, 2856.43, 20200317.0, 'NAAW', 1930655307.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL llc', 2020.0, 1930738981.0, '2020-04-10', 20200403, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 509.27, 20200410.0, 'NAA8', 1930738981.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200609331, 'KROG associates', 2020.0, 1930715678.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 17454.11, 20200328.0, 'NAA8', 1930715678.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO corp', 2020.0, 1930621622.0, '2020-03-09', 20200307, 20200309, '2020-04-10', 'USD', 'RV', 1.0, 32378.86, 20200309.0, 'NA32', 1930621622.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU systems', 2020.0, 1930760157.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 2118.44, 20200408.0, 'NAA8', 1930760157.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930851745.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 10301.49, 20200504.0, 'NAH4', 1930851745.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 7120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930753426.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 20981.96, 20200406.0, 'NAH4', 1930753426.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930791181.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 2409.19, 20200415.0, 'NAH4', 1930791181.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930708717.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 32775.35, 20200326.0, 'NAAX', 1930708717.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930657355.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 3960.5, 20200318.0, 'NAH4', 1930657355.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO ', 2020.0, 2960628010.0, '2020-04-09', 20200409, 20200409, '2020-04-29', 'CAD', 'RV', 1.0, 117628.5, 20200419.0, 'CA10', 2960628010.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 7125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930804384.0, '2020-04-21', 20200421, 20200421, '2020-05-09', 'USD', 'RV', 1.0, 908.65, 20200416.0, 'NAM4', 1930804384.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930642631.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 175543.35, 20200313.0, 'NAA8', 1930642631.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930650858.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 602.78, 20200314.0, 'NAH4', 1930650858.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930592908.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 301.25, 20200303.0, 'NAA8', 1930592908.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO us', 2020.0, 2960627371.0, '2020-04-10', 20200410, 20200410, '2020-04-22', 'CAD', 'RV', 1.0, 35982.67, 20200412.0, 'CA10', 2960627371.0, 1, '2020-04-26', '0-15 days' ); /* INSERT QUERY NO: 7130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930752538.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 41038.99, 20200406.0, 'NAH4', 1930752538.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS systems', 2020.0, 1930593814.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 70702.88, 20200303.0, 'NAA8', 1930593814.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930726874.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 127929.6, 20200401.0, 'NAA8', 1930726874.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO co', 2020.0, 2960617859.0, '2020-03-02', 20200302, 20200302, '2020-03-12', 'CAD', 'RV', 1.0, 43068.13, 20200302.0, 'CA10', 2960617859.0, 1, '2020-03-17', '0-15 days' ); /* INSERT QUERY NO: 7134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930592410.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 162.52, 20200303.0, 'NAA8', 1930592410.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930729496.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 13114.9, 20200403.0, 'NAAX', 1930729496.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930876351.0, '2020-05-09', 20200507, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 12446.02, 20200509.0, 'NAH4', 1930876351.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 7137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET in', 2020.0, 1930579953.0, '2020-02-27', 20200227, 20200227, '2020-03-18', 'USD', 'RV', 1.0, 251.06, 20200227.0, 'NAD1', 1930579953.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930719343.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 1065.66, 20200330.0, 'NAH4', 1930719343.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140105686, 'SYSC co', 2020.0, 2960633053.0, '2020-05-07', 20200507, 20200507, '2020-05-19', 'CAD', 'RV', 1.0, 2531.5, 20200509.0, 'CA10', 2960633053.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 7140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930894496.0, '2020-05-11', 20200512, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 471.56, 20200511.0, 'NAH4', 1930894496.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 7141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M llc', 2020.0, 2960631948.0, '2020-05-01', 20200501, 20200501, '2020-05-12', 'CAD', 'RV', 1.0, 62604.23, 20200502.0, 'CA10', 2960631948.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 7142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930859307.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 893.14, 20200505.0, 'NAA8', 1930859307.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200749782, 'KROG systems', 2020.0, 1930846609.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 36238.28, 20200501.0, 'NAA8', 1930846609.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER systems', 2020.0, 1930684642.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 15204.21, 20200322.0, 'NAA8', 1930684642.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930883957.0, '2020-05-12', 20200510, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 81161.92, 20200512.0, 'NAH4', 1930883957.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 7146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG systems', 2020.0, 1930653344.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 10627.58, 20200314.0, 'NAA8', 1930653344.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO trust', 2020.0, 1930787878.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 7609.34, 20200415.0, 'NAA8', 1930787878.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 7148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930874946.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 53640.93, 20200507.0, 'NAH4', 1930874946.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 7149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930624305.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 10731.59, 20200311.0, 'NAH4', 1930624305.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 7150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930753221.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 70903.13, 20200406.0, 'NAU5', 1930753221.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930777407.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 1631.85, 20200412.0, 'NAH4', 1930777407.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG llc', 2020.0, 1930761057.0, '2020-04-07', 20200408, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 15594.14, 20200407.0, 'NAA8', 1930761057.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930863121.0, '2020-05-06', 20200506, 20200506, '2020-05-24', 'USD', 'RV', 1.0, 4095.72, 20200501.0, 'NAM4', 1930863121.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 7154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930701053.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 27930.22, 20200327.0, 'NAC6', 1930701053.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930611085.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 1085.08, 20200306.0, 'NAH4', 1930611085.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B llc', 2020.0, 1930643024.0, '2020-03-11', 20200312, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 1212.23, 20200311.0, 'NAA8', 1930643024.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930790880.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 25980.49, 20200416.0, 'NAH4', 1930790880.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 7158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR corporation', 2020.0, 1930624936.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 36797.11, 20200310.0, 'NAA8', 1930624936.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU in', 2020.0, 1930814719.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 3415.45, 20200423.0, 'NAA8', 1930814719.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960628656.0, '2020-04-17', 20200417, 20200417, '2020-04-28', 'CAD', 'RV', 1.0, 190359.28, 20200418.0, 'CA10', 2960628656.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 7161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER corporation', 2020.0, 1930795588.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 12620.79, 20200417.0, 'NAA8', 1930795588.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930583348.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 81832.65, 20200302.0, 'NAH4', 1930583348.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD systems', 2020.0, 1930691359.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 14875.81, 20200325.0, 'NAA8', 1930691359.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930687820.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 13874.35, 20200325.0, 'NAH4', 1930687820.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE us', 2020.0, 1930859194.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 23508.48, 20200507.0, 'NAA8', 1930859194.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930751770.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 43712.93, 20200405.0, 'NAH4', 1930751770.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930571517.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 28569.26, 20200227.0, 'NAH4', 1930571517.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 7168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- in', 2020.0, 2960624380.0, '2020-03-31', 20200331, 20200331, '2020-04-10', 'CAD', 'RV', 1.0, 68055.88, 20200331.0, 'CA10', 2960624380.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 7169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930651424.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 3403.8, 20200314.0, 'NAH4', 1930651424.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930766024.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 7105.66, 20200409.0, 'NAH4', 1930766024.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930808751.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 19911.13, 20200422.0, 'NAA8', 1930808751.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU ', 2020.0, 1930757040.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 43293.89, 20200408.0, 'NAA8', 1930757040.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M systems', 2020.0, 1930857177.0, '2020-05-05', 20200504, 20200505, '2020-05-15', 'USD', 'RV', 1.0, 803.23, 20200515.0, 'NACH', 1930857177.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 7174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930769663.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 79152.22, 20200409.0, 'NAU5', 1930769663.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930681137.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 38164.12, 20200321.0, 'NAH4', 1930681137.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL us', 2020.0, 1930686384.0, '2020-03-28', 20200323, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 8934.27, 20200328.0, 'NAA8', 1930686384.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR in', 2020.0, 1930671228.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 49308.34, 20200320.0, 'NAA8', 1930671228.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930862136.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 37296.98, 20200507.0, 'NAH4', 1930862136.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 7179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930705351.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 17694.11, 20200327.0, 'NAH4', 1930705351.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW associates', 2020.0, 1930621033.0, '2020-03-10', 20200307, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 46362.71, 20200310.0, 'NAA8', 1930621033.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930655294.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 9015.84, 20200318.0, 'NAAX', 1930655294.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100049617, 'SUNRIS associates', 2020.0, 1930833219.0, '2020-04-28', 20200428, 20200428, '2020-05-18', 'USD', 'RV', 1.0, 39038.13, 20200428.0, 'NAD1', 1930833219.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA trust', 2020.0, 1930654658.0, '2020-03-16', 20200316, 20200316, '2020-03-11', 'USD', 'RV', 1.0, 926.32, 20200301.0, 'NAM2', 1930654658.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 7184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'HEINZ trust', 2020.0, 1991840334.0, '2020-03-23', 20200319, 20200323, '2020-05-07', 'USD', 'RV', 1.0, 3731.4, 20200323.0, 'NAVF', 1991840334.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 7185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930702091.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 14371.51, 20200326.0, 'NAA8', 1930702091.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT trust', 2020.0, 1930868415.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 56581.85, 20200507.0, 'NAA8', 1930868415.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 7187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930817952.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 277.08, 20200416.0, 'NAM4', 1930817952.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930822708.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 20178.74, 20200424.0, 'NAH4', 1930822708.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930779838.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 43.02, 20200413.0, 'NAA8', 1930779838.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930824572.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 841.56, 20200424.0, 'NAU5', 1930824572.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930779960.0, '2020-04-12', 20200413, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 52666.64, 20200412.0, 'NAA8', 1930779960.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930859444.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 5932.07, 20200506.0, 'NAH4', 1930859444.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 7193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930746196.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 104007.91, 20200404.0, 'NAA8', 1930746196.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100004536, 'BAS in', 2020.0, 1930839247.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 65004.94, 20200430.0, 'NAA8', 1930839247.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930809981.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 69317.86, 20200423.0, 'NAC6', 1930809981.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930818594.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 52385.01, 20200424.0, 'NAH4', 1930818594.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930793946.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 5836.47, 20200416.0, 'NAH4', 1930793946.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 7198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930570578.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 339.57, 20200227.0, 'NAH4', 1930570578.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 7199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100008001, 'ANHA trust', 2020.0, 1930751804.0, '2020-04-10', 20200405, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 18312.23, 20200410.0, 'NAA8', 1930751804.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT us', 2020.0, 1930614577.0, '2020-03-09', 20200306, 20200309, '2020-04-13', 'USD', 'RV', 1.0, 20904.0, 20200309.0, 'NAG2', 1930614577.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 7201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930789158.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 4730.21, 20200417.0, 'NAH4', 1930789158.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR corp', 2020.0, 1930700577.0, '2020-03-31', 20200330, 20200331, '2020-05-02', 'USD', 'RV', 1.0, 9663.6, 20200331.0, 'NA32', 1930700577.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 7203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930651953.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 50801.45, 20200314.0, 'NAH4', 1930651953.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030964, 'NATURA systems', 2020.0, 1930843480.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 678.0, 20200430.0, 'NAA8', 1930843480.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930691998.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 1291.03, 20200323.0, 'NAA8', 1930691998.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 100034330, 'MASSY D corporation', 2020.0, 1991842235.0, '2020-04-15', 20200413, 20200415, '2020-05-15', 'USD', 'RV', 1.0, 37615.65, 20200415.0, 'NAVE', 1991842235.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 7207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104229, 'A & W F co', 2020.0, 2960616705.0, '2020-02-28', 20200228, 20200228, '2020-03-09', 'CAD', 'RV', 1.0, 3075.3, 20200228.0, 'CA10', 2960616705.0, 1, '2020-03-13', '0-15 days' ); /* INSERT QUERY NO: 7208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ us', 2020.0, 1930703302.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 40003.92, 20200326.0, 'NAA8', 1930703302.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930753725.0, '2020-04-09', 20200406, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 81868.92, 20200409.0, 'NAH4', 1930753725.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 7210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930630128.0, '2020-03-09', 20200310, 20200309, '2020-04-12', 'USD', 'RV', 1.0, 56457.98, 20200309.0, 'NAAW', 1930630128.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT co', 2020.0, 1930636918.0, '2020-03-12', 20200310, 20200312, '2020-04-16', 'USD', 'RV', 1.0, 25316.4, 20200312.0, 'NAG2', 1930636918.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 7212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930833686.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 11417.88, 20200429.0, 'NAH4', 1930833686.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE in', 2020.0, 1930801594.0, '2020-04-22', 20200419, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 14221.28, 20200422.0, 'NAA8', 1930801594.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO systems', 2020.0, 1930731183.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 55411.3, 20200403.0, 'NAA8', 1930731183.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930747673.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 13976.96, 20200406.0, 'NAH4', 1930747673.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930584770.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 41357.14, 20200229.0, 'NAH4', 1930584770.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930778228.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 453.64, 20200412.0, 'NAA8', 1930778228.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782772, 'ASSOC G foundation', 2020.0, 1930621233.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 27241.03, 20200309.0, 'NAA8', 1930621233.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792293, 'UNIFIE llc', 2020.0, 1930688958.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 24186.82, 20200323.0, 'NAA8', 1930688958.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930806397.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 28785.56, 20200422.0, 'NAH4', 1930806397.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA us', 2020.0, 1930606174.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 78.72, 20200301.0, 'NAM4', 1930606174.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200725421, 'BEN in', 2020.0, 1930594052.0, '2020-03-06', 20200303, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 25718.28, 20200306.0, 'NAA8', 1930594052.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930733160.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 9208.33, 20200404.0, 'NAH4', 1930733160.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930788774.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 19881.19, 20200416.0, 'NAH4', 1930788774.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 7225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960629349.0, '2020-04-19', 20200419, 20200419, '2020-05-07', 'CAD', 'RV', 1.0, 120017.73, 20200427.0, 'CA10', 2960629349.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 7226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930685315.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 4272.16, 20200321.0, 'NAH4', 1930685315.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE trust', 2020.0, 1930814051.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 126511.54, 20200423.0, 'NAA8', 1930814051.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721530, 'REDNE trust', 2020.0, 1930654919.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 60679.57, 20200316.0, 'NAA8', 1930654919.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW associates', 2020.0, 1930764195.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 107005.84, 20200408.0, 'NAA8', 1930764195.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960626343.0, '2020-04-05', 20200405, 20200405, '2020-04-15', 'CAD', 'RV', 1.0, 12965.4, 20200405.0, 'CA10', 2960626343.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 7231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE systems', 2020.0, 1930580306.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 57792.78, 20200228.0, 'NAA8', 1930580306.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 7232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930651954.0, '2020-03-13', 20200314, 20200313, '2020-04-14', 'USD', 'RV', 1.0, 31382.78, 20200313.0, 'NA32', 1930651954.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930592572.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 390.96, 20200302.0, 'NAA8', 1930592572.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH trust', 2020.0, 1930721469.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 8691.7, 20200330.0, 'NAA8', 1930721469.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE ', 2020.0, 1930594660.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 147016.73, 20200304.0, 'NAA8', 1930594660.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 7236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930803639.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 7354.56, 20200421.0, 'NAC6', 1930803639.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930698846.0, '2020-03-24', 20200325, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 116485.81, 20200324.0, 'NAA8', 1930698846.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER corporation', 2020.0, 1930764214.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 32423.54, 20200408.0, 'NAA8', 1930764214.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930802112.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 42322.04, 20200419.0, 'NAU5', 1930802112.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL co', 2020.0, 1930808749.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 144944.4, 20200421.0, 'NAA8', 1930808749.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930652034.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 88633.12, 20200314.0, 'NAA8', 1930652034.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960625553.0, '2020-04-02', 20200402, 20200402, '2020-04-13', 'CAD', 'RV', 1.0, 76343.46, 20200403.0, 'CA10', 2960625553.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 7243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER associates', 2020.0, 1930782433.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 20568.61, 20200413.0, 'NAA8', 1930782433.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER systems', 2020.0, 2960625254.0, '2020-03-31', 20200331, 20200331, '2020-04-18', 'CAD', 'RV', 1.0, 10672.62, 20200408.0, 'CA10', 2960625254.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 7245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930679377.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 18733.33, 20200321.0, 'NAA8', 1930679377.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930685075.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 756.17, 20200322.0, 'NAH4', 1930685075.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930621076.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 69036.27, 20200308.0, 'NAH4', 1930621076.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930832226.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 77820.91, 20200427.0, 'NAA8', 1930832226.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930611226.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 42130.87, 20200306.0, 'NAH4', 1930611226.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930862137.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 29402.89, 20200507.0, 'NAH4', 1930862137.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 7251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732421, 'MARTI foundation', 2020.0, 1930788046.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 170143.15, 20200415.0, 'NAA8', 1930788046.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY corporation', 2020.0, 1930814992.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 14426.49, 20200424.0, 'NAC6', 1930814992.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS systems', 2020.0, 1930732234.0, '2020-04-01', 20200402, 20200401, '2020-06-05', 'USD', 'RV', 1.0, 23196.89, 20200401.0, 'NAGD', 1930732234.0, 1, '2020-06-03', 'early' ); /* INSERT QUERY NO: 7254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106271, 'LONGO corp', 2020.0, 2960626605.0, '2020-04-03', 20200403, 20200403, '2020-04-17', 'CAD', 'RV', 1.0, 49585.93, 20200407.0, 'CA10', 2960626605.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 7255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930723015.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 48232.75, 20200331.0, 'NAH4', 1930723015.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO llc', 2020.0, 1930561500.0, '2020-02-27', 20200224, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 35967.8, 20200227.0, 'NAA8', 1930561500.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 7257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930652034.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 88633.12, 20200314.0, 'NAA8', 1930652034.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930780571.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 27996.45, 20200413.0, 'NAH4', 1930780571.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 7259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER co', 2020.0, 1930652577.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 94083.11, 20200314.0, 'NAA8', 1930652577.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 7260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER in', 2020.0, 1930822207.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 89122.88, 20200424.0, 'NAA8', 1930822207.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER foundation', 2020.0, 1930800788.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 139091.46, 20200421.0, 'NAA8', 1930800788.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930765375.0, '2020-04-10', 20200410, 20200410, '2020-04-08', 'USD', 'RV', 1.0, 2055.8, 20200401.0, 'NAM1', 1930765375.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930654177.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 388.29, 20200316.0, 'NAH4', 1930654177.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S co', 2020.0, 1930667258.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 552.97, 20200319.0, 'NAA8', 1930667258.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930571469.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 83588.36, 20200227.0, 'NAA8', 1930571469.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 7266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930716035.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 1898.9, 20200329.0, 'NAH4', 1930716035.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930642250.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 52167.38, 20200312.0, 'NAA8', 1930642250.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100013521, 'THAYE systems', 2020.0, 1930684903.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 80755.85, 20200323.0, 'NAA8', 1930684903.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930688651.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 28365.67, 20200324.0, 'NAA8', 1930688651.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930804864.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 15333.25, 20200421.0, 'NAA8', 1930804864.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930780827.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 661.11, 20200414.0, 'NAH4', 1930780827.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA co', 2020.0, 1930857884.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 8546.98, 20200504.0, 'NAA8', 1930857884.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR co', 2020.0, 1930782314.0, '2020-04-17', 20200413, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 5748.46, 20200417.0, 'NAA8', 1930782314.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT associates', 2020.0, 1930782846.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 92340.74, 20200414.0, 'NAA8', 1930782846.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET associates', 2020.0, 1930605948.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 7157.6, 20200306.0, 'NAA8', 1930605948.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 7276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE systems', 2020.0, 2960627655.0, '2020-04-13', 20200413, 20200413, '2020-04-25', 'CAD', 'RV', 1.0, 21448.0, 20200415.0, 'CA10', 2960627655.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 7277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930576772.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 45223.53, 20200228.0, 'NAC6', 1930576772.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 7278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960622881.0, '2020-03-24', 20200324, 20200324, '2020-04-11', 'CAD', 'RV', 1.0, 132976.0, 20200401.0, 'CA10', 2960622881.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 7279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930778886.0, '2020-04-14', 20200412, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 3541.37, 20200414.0, 'NAH4', 1930778886.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO corporation', 2020.0, 2960620879.0, '2020-03-14', 20200314, 20200314, '2020-03-26', 'CAD', 'RV', 1.0, 93835.44, 20200316.0, 'CA10', 2960620879.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 7281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930610867.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 70335.25, 20200308.0, 'NAH4', 1930610867.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930606627.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 648.03, 20200306.0, 'NAA8', 1930606627.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930581285.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 31431.46, 20200228.0, 'NAH4', 1930581285.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930701288.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 61892.17, 20200325.0, 'NAAX', 1930701288.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930612993.0, '2020-03-06', 20200306, 20200306, '2020-03-24', 'USD', 'RV', 1.0, 76.44, 20200301.0, 'NAM4', 1930612993.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA co', 2020.0, 1930808786.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 10698.03, 20200421.0, 'NAA8', 1930808786.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930719402.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 80517.03, 20200331.0, 'NAAX', 1930719402.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC associates', 2020.0, 1930819352.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 106.2, 20200416.0, 'NAM4', 1930819352.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE foundation', 2020.0, 1930833096.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 229332.98, 20200429.0, 'NAA8', 1930833096.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772595, 'SAFEW in', 2020.0, 1930654222.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 150747.46, 20200317.0, 'NAA8', 1930654222.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930651171.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 15560.58, 20200314.0, 'NAH4', 1930651171.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001452, 'COASTAL trust', 2020.0, 1930561154.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 7381.02, 20200302.0, 'NAA8', 1930561154.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 7293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930585131.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 48405.42, 20200301.0, 'NAH4', 1930585131.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930763838.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 5776.34, 20200410.0, 'NAH4', 1930763838.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200748108, 'KROGER ', 2020.0, 1930686412.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 17519.67, 20200323.0, 'NAA8', 1930686412.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100057168, 'CO associates', 2020.0, 1930795577.0, '2020-04-17', 20200416, 20200417, '2020-06-21', 'USD', 'RV', 1.0, 97.27, 20200417.0, 'NAGD', 1930795577.0, 1, '2020-06-15', 'early' ); /* INSERT QUERY NO: 7297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105652, 'DOLLAR associates', 2020.0, 2960620030.0, '2020-03-11', 20200311, 20200311, '2020-03-23', 'CAD', 'RV', 1.0, 9046.93, 20200313.0, 'CA10', 2960620030.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 7298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930701001.0, '2020-03-27', 20200325, 20200327, '2020-05-01', 'USD', 'RV', 1.0, 24134.7, 20200327.0, 'NAG2', 1930701001.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 7299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930716695.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 67716.62, 20200329.0, 'NAC6', 1930716695.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930652013.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 7053.34, 20200314.0, 'NAH4', 1930652013.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960631886.0, '2020-05-01', 20200501, 20200501, '2020-05-21', 'CAD', 'RV', 1.0, 95037.6, 20200511.0, 'CA10', 2960631886.0, 1, '2020-05-26', '0-15 days' ); /* INSERT QUERY NO: 7302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930804117.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 315.53, 20200421.0, 'NAA8', 1930804117.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200796828, 'CSM BAK ', 2020.0, 1930764673.0, '2020-04-06', 20200408, 20200406, '2020-05-06', 'USD', 'RV', 1.0, 35531.9, 20200406.0, 'NAD5', 1930764673.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930630716.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 2209.18, 20200311.0, 'NAH4', 1930630716.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 7305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930683030.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 9643.54, 20200322.0, 'NAH4', 1930683030.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO associates', 2020.0, 2960623779.0, '2020-03-27', 20200327, 20200327, '2020-04-14', 'CAD', 'RV', 1.0, 41246.45, 20200404.0, 'CA10', 2960623779.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 7307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930772783.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 23180.52, 20200411.0, 'NAC6', 1930772783.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930827481.0, '2020-04-28', 20200425, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 4554.47, 20200428.0, 'NAH4', 1930827481.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930827014.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 7057.83, 20200426.0, 'NAH4', 1930827014.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930684189.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 47707.48, 20200321.0, 'NAH4', 1930684189.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930663837.0, '2020-03-18', 20200317, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 2446.51, 20200318.0, 'NAGD', 1930663837.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 7312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930823250.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 52206.63, 20200425.0, 'NAH4', 1930823250.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960623721.0, '2020-03-24', 20200324, 20200324, '2020-04-03', 'CAD', 'RV', 1.0, 138128.25, 20200324.0, 'CA10', 2960623721.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 7314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930751977.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 2900.46, 20200406.0, 'NAH4', 1930751977.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO us', 2020.0, 2960627768.0, '2020-04-12', 20200412, 20200412, '2020-04-29', 'CAD', 'RV', 1.0, 113174.8, 20200419.0, 'CA10', 2960627768.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 7316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI associates', 2020.0, 1930730977.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 95194.54, 20200401.0, 'NAA8', 1930730977.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930651187.0, '2020-03-13', 20200314, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 2373.96, 20200313.0, 'NAH4', 1930651187.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 7318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930773618.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 27010.5, 20200410.0, 'NAAX', 1930773618.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930585461.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 14370.4, 20200302.0, 'NAH4', 1930585461.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR systems', 2020.0, 1930860457.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 30394.52, 20200507.0, 'NAA8', 1930860457.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930714375.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 31838.22, 20200328.0, 'NAA8', 1930714375.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960625710.0, '2020-03-31', 20200331, 20200331, '2020-04-10', 'CAD', 'RV', 1.0, 1618.34, 20200331.0, 'CAX2', 2960625710.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 7323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960628255.0, '2020-04-14', 20200414, 20200414, '2020-04-25', 'CAD', 'RV', 1.0, 11490.71, 20200415.0, 'CA10', 2960628255.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 7324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA systems', 2020.0, 1930857169.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 35583.56, 20200504.0, 'NAA8', 1930857169.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200019542, 'ABC B llc', 2020.0, 1930683279.0, '2020-03-23', 20200321, 20200323, '2020-04-02', 'USD', 'RV', 1.0, 24954.48, 20200323.0, 'NA10', 1930683279.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930674741.0, '2020-03-20', 20200320, 20200320, '2020-03-23', 'USD', 'RV', 1.0, 15912.05, 20200316.0, 'NAM1', 1930674741.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S corp', 2020.0, 1930790860.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 142363.47, 20200417.0, 'NAA8', 1930790860.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO corp', 2020.0, 1930586513.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 31040.91, 20200302.0, 'NAA8', 1930586513.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930577994.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 28665.41, 20200228.0, 'NAH4', 1930577994.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930804353.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 1011.52, 20200420.0, 'NAU5', 1930804353.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 7331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100031686, 'EWT-EU ', 2020.0, 1991839668.0, '2020-03-05', 20200301, 20200305, '2020-04-04', 'USD', 'RV', 1.0, 5901.08, 20200305.0, 'NAVE', 1991839668.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 7332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F foundation', 2020.0, 1930596812.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 30286.95, 20200303.0, 'NAA8', 1930596812.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930725913.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 23057.11, 20200331.0, 'NAH4', 1930725913.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701314, 'MBM foundation', 2020.0, 1930655157.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 9511.6, 20200316.0, 'NAA8', 1930655157.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930718093.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 87524.13, 20200330.0, 'NAA8', 1930718093.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930848248.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 18999.0, 20200502.0, 'NAH4', 1930848248.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG llc', 2020.0, 1930760341.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 26145.92, 20200407.0, 'NAA8', 1930760341.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 100029649, 'LES ENTRE co', 2020.0, 2960632484.0, '2020-05-05', 20200505, 20200505, '2020-05-16', 'CAD', 'RV', 1.0, 42387.69, 20200506.0, 'CA10', 2960632484.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 7339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930761474.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 23349.92, 20200408.0, 'NAH4', 1930761474.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930602641.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 8793.09, 20200305.0, 'NAAX', 1930602641.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 7341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200724999, 'GILSTE corporation', 2020.0, 1930710702.0, '2020-03-25', 20200327, 20200325, '2020-04-04', 'USD', 'RV', 1.0, 51663.6, 20200325.0, 'NA10', 1930710702.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 7342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930809935.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 25732.35, 20200422.0, 'NAH4', 1930809935.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG us', 2020.0, 1930635706.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 8561.28, 20200310.0, 'NAA8', 1930635706.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930733134.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 30956.41, 20200403.0, 'NAH4', 1930733134.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930819166.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 448.26, 20200416.0, 'NAM4', 1930819166.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL co', 2020.0, 1930822846.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 36360.13, 20200425.0, 'NAA8', 1930822846.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930715442.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 9636.21, 20200329.0, 'NAH4', 1930715442.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100013521, 'THAYE systems', 2020.0, 1930785164.0, '2020-04-15', 20200414, 20200415, '2020-06-19', 'USD', 'RV', 1.0, 78711.94, 20200415.0, 'NAGD', 1930785164.0, 1, '2020-06-12', 'early' ); /* INSERT QUERY NO: 7349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930718495.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 38188.27, 20200331.0, 'NAH4', 1930718495.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE corp', 2020.0, 1930784304.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 89820.44, 20200414.0, 'NAA8', 1930784304.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930660319.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 15265.33, 20200317.0, 'NAH4', 1930660319.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC co', 2020.0, 1930812835.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 4316.48, 20200416.0, 'NAM4', 1930812835.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930689900.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 734.99, 20200322.0, 'NAA8', 1930689900.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL co', 2020.0, 1930840092.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 3243.51, 20200430.0, 'NAA8', 1930840092.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 7355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER systems', 2020.0, 1930845484.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 104237.48, 20200502.0, 'NAA8', 1930845484.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB us', 2020.0, 2960624027.0, '2020-03-26', 20200326, 20200326, '2020-04-14', 'CAD', 'RV', 1.0, 119464.57, 20200404.0, 'CA10', 2960624027.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 7357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B foundation', 2020.0, 1930605621.0, '2020-03-06', 20200305, 20200306, '2020-04-07', 'USD', 'RV', 1.0, 45369.74, 20200306.0, 'NA32', 1930605621.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930748930.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 32941.32, 20200405.0, 'NAH4', 1930748930.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG in', 2020.0, 1930703705.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 50775.5, 20200325.0, 'NAA8', 1930703705.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930707332.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 521.45, 20200327.0, 'NAC6', 1930707332.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930624760.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 56476.66, 20200310.0, 'NAA8', 1930624760.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET ', 2020.0, 1930838283.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 4412.39, 20200430.0, 'NAA8', 1930838283.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930747316.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 5374.38, 20200405.0, 'NAC6', 1930747316.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 7364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930652410.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 16691.99, 20200315.0, 'NAH4', 1930652410.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930827710.0, '2020-04-28', 20200425, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 70427.65, 20200428.0, 'NAH4', 1930827710.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930737831.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 40358.02, 20200403.0, 'NAH4', 1930737831.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI foundation', 2020.0, 1930738378.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 65788.21, 20200403.0, 'NAA8', 1930738378.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930877336.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 713.83, 20200508.0, 'NAH4', 1930877336.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 7369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE corp', 2020.0, 2960618634.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'CAD', 'RV', 1.0, 83831.4, 20200312.0, 'CA10', 2960618634.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 7370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT ', 2020.0, 1930689672.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 13745.61, 20200324.0, 'NAA8', 1930689672.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930651470.0, '2020-03-17', 20200314, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 9028.46, 20200317.0, 'NAH4', 1930651470.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930846456.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 82218.29, 20200430.0, 'NAA8', 1930846456.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 7373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200529372, 'GHC llc', 2020.0, 1930705545.0, '2020-03-27', 20200326, 20200327, '2020-05-31', 'USD', 'RV', 1.0, 11939.63, 20200327.0, 'NAGD', 1930705545.0, 1, '2020-05-26', 'early' ); /* INSERT QUERY NO: 7374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT foundation', 2020.0, 1930687234.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 47547.86, 20200322.0, 'NAU5', 1930687234.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 7375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB systems', 2020.0, 2960618638.0, '2020-03-07', 20200307, 20200307, '2020-03-26', 'CAD', 'RV', 1.0, 144532.32, 20200316.0, 'CA10', 2960618638.0, 1, '2020-03-31', '0-15 days' ); /* INSERT QUERY NO: 7376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930635434.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 14789.25, 20200312.0, 'NAH4', 1930635434.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG corporation', 2020.0, 1930846776.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 7485.15, 20200503.0, 'NAA8', 1930846776.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930652019.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 25807.62, 20200314.0, 'NAH4', 1930652019.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE trust', 2020.0, 1930594413.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 2.39, 20200303.0, 'NAX2', 1930594413.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 7380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930784328.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 30168.19, 20200415.0, 'NAH4', 1930784328.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930739041.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 36351.61, 20200404.0, 'NAH4', 1930739041.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930761258.0, '2020-04-08', 20200408, 20200408, '2020-04-11', 'USD', 'RV', 1.0, 3873.64, 20200401.0, 'NAM2', 1930761258.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930716855.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 59055.02, 20200330.0, 'NAH4', 1930716855.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 7384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930842714.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 25426.17, 20200429.0, 'NAH4', 1930842714.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE foundation', 2020.0, 1930692002.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 167648.57, 20200326.0, 'NAA8', 1930692002.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA associates', 2020.0, 1930710356.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 25603.97, 20200330.0, 'NAA8', 1930710356.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930645452.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 13752.46, 20200314.0, 'NAAX', 1930645452.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI foundation', 2020.0, 1930645963.0, '2020-03-12', 20200312, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 10641.23, 20200312.0, 'NAGD', 1930645963.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 7389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200126819, 'MCLANE corp', 2020.0, 1930660042.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 45212.55, 20200317.0, 'NAA8', 1930660042.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741831, 'SUPE co', 2020.0, 1930647491.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 62740.32, 20200314.0, 'NAA8', 1930647491.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930630805.0, '2020-03-12', 20200310, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 16220.35, 20200312.0, 'NAGD', 1930630805.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930653513.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 131039.77, 20200314.0, 'NAA8', 1930653513.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930729933.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 54846.57, 20200401.0, 'NAA8', 1930729933.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 7394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930710401.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 46926.63, 20200328.0, 'NAA8', 1930710401.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930645887.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 1898.2, 20200313.0, 'NAH4', 1930645887.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 7396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH systems', 2020.0, 1930855833.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 95314.56, 20200504.0, 'NAA8', 1930855833.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930709657.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 17930.26, 20200328.0, 'NAH4', 1930709657.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930788802.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 25351.49, 20200414.0, 'NAH4', 1930788802.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA us', 2020.0, 1930689524.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 63.76, 20200316.0, 'NAM4', 1930689524.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100015557, 'BI trust', 2020.0, 1930638529.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 7771.97, 20200311.0, 'NAA8', 1930638529.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 7401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930578026.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 9659.9, 20200227.0, 'NAAX', 1930578026.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 7402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930727877.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 20770.2, 20200401.0, 'NAA8', 1930727877.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 7403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER corporation', 2020.0, 1930592147.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 16592.17, 20200303.0, 'NAA8', 1930592147.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930629780.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 1351.61, 20200310.0, 'NAA8', 1930629780.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW foundation', 2020.0, 1930756450.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 49668.3, 20200408.0, 'NAA8', 1930756450.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL foundation', 2020.0, 1930594975.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 35438.23, 20200304.0, 'NAA8', 1930594975.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930861726.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 27663.67, 20200506.0, 'NAA8', 1930861726.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930589356.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 14401.29, 20200304.0, 'NAH4', 1930589356.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 7409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS in', 2020.0, 1930571202.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 4793.0, 20200228.0, 'NAA8', 1930571202.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 7410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200943457, 'BERN co', 2020.0, 1930667024.0, '2020-03-17', 20200318, 20200317, '2020-04-16', 'USD', 'RV', 1.0, 53404.08, 20200317.0, 'NAD5', 1930667024.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER corp', 2020.0, 1930862240.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 35070.4, 20200506.0, 'NAA8', 1930862240.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930794474.0, '2020-04-23', 20200417, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 1357.33, 20200423.0, 'NAA8', 1930794474.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930633790.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 2237.43, 20200310.0, 'NAH4', 1930633790.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930872540.0, '2020-05-07', 20200507, 20200507, '2020-05-24', 'USD', 'RV', 1.0, 5603.55, 20200501.0, 'NAM4', 1930872540.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 7415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930776646.0, '2020-04-12', 20200411, 20200412, '2020-05-27', 'USD', 'RV', 1.0, 131537.74, 20200412.0, 'NAWP', 1930776646.0, 1, '2020-05-26', 'early' ); /* INSERT QUERY NO: 7416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE foundation', 2020.0, 2960622089.0, '2020-03-24', 20200324, 20200324, '2020-04-04', 'CAD', 'RV', 1.0, 167075.85, 20200325.0, 'CA10', 2960622089.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 7417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930819921.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 70342.84, 20200424.0, 'NAA8', 1930819921.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT foundation', 2020.0, 1930663850.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 114026.4, 20200318.0, 'NAA8', 1930663850.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW systems', 2020.0, 1930630011.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 50632.78, 20200311.0, 'NAA8', 1930630011.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930709665.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 16336.7, 20200326.0, 'NAH4', 1930709665.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930833562.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 2742.05, 20200429.0, 'NAA8', 1930833562.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 7422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M associates', 2020.0, 2960617607.0, '2020-02-28', 20200228, 20200228, '2020-03-10', 'CAD', 'RV', 1.0, 13772.64, 20200229.0, 'CA10', 2960617607.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 7423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930643170.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 21619.43, 20200312.0, 'NAA8', 1930643170.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930844432.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 62671.9, 20200430.0, 'NAA8', 1930844432.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 7425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930723830.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 869.67, 20200401.0, 'NAH4', 1930723830.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 7426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930750161.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 69856.03, 20200405.0, 'NAU5', 1930750161.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930683352.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 62516.22, 20200323.0, 'NAH4', 1930683352.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 7428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930715847.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 880.75, 20200328.0, 'NAA8', 1930715847.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC foundation', 2020.0, 1930817775.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 7306.5, 20200416.0, 'NAM4', 1930817775.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930730473.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 12616.91, 20200402.0, 'NAA8', 1930730473.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930683164.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 10554.82, 20200321.0, 'NAA8', 1930683164.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930605939.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 38259.34, 20200305.0, 'NAH4', 1930605939.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930609943.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 74102.4, 20200307.0, 'NAH4', 1930609943.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930621455.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 1180.76, 20200309.0, 'NAH4', 1930621455.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930752145.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 14277.44, 20200407.0, 'NAH4', 1930752145.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930751774.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 129932.0, 20200406.0, 'NAA8', 1930751774.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 7437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA llc', 2020.0, 1930610587.0, '2020-03-06', 20200306, 20200306, '2020-05-10', 'USD', 'RV', 1.0, 5218.41, 20200306.0, 'NAGD', 1930610587.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930778213.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 1011.97, 20200412.0, 'NAH4', 1930778213.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S in', 2020.0, 1930724042.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 745.8, 20200330.0, 'NAA8', 1930724042.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930829709.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 51095.74, 20200428.0, 'NAH4', 1930829709.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH in', 2020.0, 1930722892.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 1.43, 20200331.0, 'NAX2', 1930722892.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 7442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930788844.0, '2020-04-16', 20200415, 20200416, '2020-06-20', 'USD', 'RV', 1.0, 22994.96, 20200416.0, 'NAGD', 1930788844.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 7443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930615445.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 56731.6, 20200306.0, 'NAA8', 1930615445.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930777056.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 661.11, 20200411.0, 'NAH4', 1930777056.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC associates', 2020.0, 1930599560.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 4933.83, 20200301.0, 'NAM4', 1930599560.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930720177.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 213.34, 20200401.0, 'NAH4', 1930720177.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 7447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930582565.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 9975.38, 20200229.0, 'NAAX', 1930582565.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 7448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100015818, 'MET foundation', 2020.0, 2960632287.0, '2020-05-03', 20200503, 20200503, '2020-05-15', 'CAD', 'RV', 1.0, 51082.21, 20200505.0, 'CA10', 2960632287.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 7449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960621958.0, '2020-03-19', 20200319, 20200319, '2020-04-05', 'CAD', 'RV', 1.0, 4573.25, 20200326.0, 'CA10', 2960621958.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 7450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103400, 'FOST trust', 2020.0, 1991839770.0, '2020-03-08', 20200304, 20200308, '2020-04-07', 'USD', 'RV', 1.0, 5775.37, 20200308.0, 'NAVE', 1991839770.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 7451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930606781.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 16286.74, 20200307.0, 'NAH4', 1930606781.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930689342.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 47397.81, 20200325.0, 'NAH4', 1930689342.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930774352.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 58344.72, 20200411.0, 'NAH4', 1930774352.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930857092.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 5552.23, 20200506.0, 'NAH4', 1930857092.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 7455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930571408.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 605.51, 20200228.0, 'NAH4', 1930571408.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corporation', 2020.0, 1930645426.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 22067.43, 20200313.0, 'NAA8', 1930645426.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH foundation', 2020.0, 1930772633.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 38369.84, 20200410.0, 'NAA8', 1930772633.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930719233.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 55853.92, 20200401.0, 'NAH4', 1930719233.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 7459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783734, 'FAREW co', 2020.0, 1930877763.0, '2020-05-07', 20200508, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 18509.55, 20200507.0, 'NAA8', 1930877763.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 7460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930860324.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 62385.17, 20200506.0, 'NAA8', 1930860324.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO in', 2020.0, 1930844271.0, '2020-05-07', 20200504, 20200507, '2020-05-27', 'USD', 'RV', 1.0, 899.06, 20200507.0, 'NAD1', 1930844271.0, 1, '2020-05-25', 'early' ); /* INSERT QUERY NO: 7462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA associates', 2020.0, 1930813123.0, '2020-04-22', 20200422, 20200422, '2020-04-26', 'USD', 'RV', 1.0, 19935.51, 20200416.0, 'NAM2', 1930813123.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930744081.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 1572.77, 20200404.0, 'NAH4', 1930744081.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE ', 2020.0, 2960635937.0, '2020-05-19', 20200519, 20200519, '2020-05-29', 'CAD', 'RV', 1.0, 935.09, 20200519.0, 'CA10', 2960635937.0, 1, '2020-06-02', '0-15 days' ); /* INSERT QUERY NO: 7465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930653646.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 51656.77, 20200315.0, 'NAH4', 1930653646.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE associates', 2020.0, 1930843735.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 113860.83, 20200430.0, 'NAA8', 1930843735.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 7467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE corp', 2020.0, 1930675964.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 19648.08, 20200320.0, 'NAA8', 1930675964.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 7468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE systems', 2020.0, 1930714221.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 4758.4, 20200330.0, 'NAA8', 1930714221.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA systems', 2020.0, 1930738136.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 2796.66, 20200402.0, 'NAA8', 1930738136.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC associates', 2020.0, 1930661516.0, '2020-03-17', 20200317, 20200317, '2020-04-06', 'USD', 'RV', 1.0, 17100.82, 20200317.0, 'NAD1', 1930661516.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 7471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200743996, 'STATER in', 2020.0, 1930866263.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 17111.48, 20200507.0, 'NAA8', 1930866263.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 7472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930699436.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 2561.23, 20200330.0, 'NAA8', 1930699436.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE co', 2020.0, 2960630108.0, '2020-04-20', 20200420, 20200420, '2020-05-02', 'CAD', 'RV', 1.0, 35081.88, 20200422.0, 'CA10', 2960630108.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 7474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER us', 2020.0, 1930775878.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 51551.82, 20200410.0, 'NAA8', 1930775878.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930684331.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 14496.95, 20200322.0, 'NAH4', 1930684331.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930774813.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 661.11, 20200411.0, 'NAH4', 1930774813.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO corporation', 2020.0, 2960619636.0, '2020-03-08', 20200309, 20200308, '2020-03-21', 'CAD', 'RV', 1.0, 3713.94, 20200311.0, 'CA10', 2960619636.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 7478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100054867, 'CTI A in', 2020.0, 1930604112.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 95316.21, 20200305.0, 'NAA8', 1930604112.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930689916.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 932.49, 20200316.0, 'NAM4', 1930689916.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER co', 2020.0, 1930796670.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 123556.43, 20200417.0, 'NAA8', 1930796670.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C in', 2020.0, 1930796586.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 23308.61, 20200417.0, 'NAA8', 1930796586.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO us', 2020.0, 2960627760.0, '2020-04-11', 20200411, 20200411, '2020-04-24', 'CAD', 'RV', 1.0, 141530.83, 20200414.0, 'CA10', 2960627760.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 7483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930666802.0, '2020-03-20', 20200318, 20200320, '2020-05-04', 'USD', 'RV', 1.0, 107030.15, 20200320.0, 'NAWP', 1930666802.0, 1, '2020-05-05', '0-15 days' ); /* INSERT QUERY NO: 7484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F co', 2020.0, 1930668197.0, '2020-03-22', 20200318, 20200322, '2020-03-22', 'USD', 'RV', 1.0, 1636.27, 20200322.0, 'NAX2', 1930668197.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 7485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO systems', 2020.0, 1930692950.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 39739.15, 20200324.0, 'NAA8', 1930692950.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930685847.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 18956.17, 20200322.0, 'NAU5', 1930685847.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930846943.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 3150.45, 20200502.0, 'NAH4', 1930846943.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930609453.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 11302.05, 20200306.0, 'NAH4', 1930609453.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930619694.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 729.6, 20200309.0, 'NAH4', 1930619694.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930587179.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 8793.09, 20200303.0, 'NAAX', 1930587179.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 7491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960626636.0, '2020-04-07', 20200407, 20200407, '2020-04-19', 'CAD', 'RV', 1.0, 99512.17, 20200409.0, 'CA10', 2960626636.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 7492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE us', 2020.0, 1930804444.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 15317.45, 20200421.0, 'NAA8', 1930804444.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930682108.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 7651.71, 20200321.0, 'NAA8', 1930682108.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100047674, 'CALIFO ', 2020.0, 1930617143.0, '2020-03-08', 20200306, 20200308, '2020-04-07', 'USD', 'RV', 1.0, 5040.15, 20200308.0, 'NAD5', 1930617143.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 7495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG trust', 2020.0, 1930762364.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 31102.68, 20200408.0, 'NAA8', 1930762364.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960622223.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'CAD', 'RV', 1.0, 58778.7, 20200325.0, 'CA10', 2960622223.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 7497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO ', 2020.0, 1930789126.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 22874.4, 20200417.0, 'NAA8', 1930789126.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930636934.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 119145.3, 20200311.0, 'NAA8', 1930636934.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB us', 2020.0, 2960621435.0, '2020-03-17', 20200317, 20200317, '2020-04-03', 'CAD', 'RV', 1.0, 91557.19, 20200324.0, 'CA10', 2960621435.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 7500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR in', 2020.0, 1930576467.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 63091.23, 20200228.0, 'NAA8', 1930576467.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 7501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930856886.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 4854.96, 20200505.0, 'NAA8', 1930856886.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200701040, 'SOUTHE in', 2020.0, 1930642238.0, '2020-03-17', 20200312, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 17280.61, 20200317.0, 'NAA8', 1930642238.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M ', 2020.0, 2960624841.0, '2020-03-29', 20200329, 20200329, '2020-04-08', 'CAD', 'RV', 1.0, 91412.31, 20200329.0, 'CA10', 2960624841.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 7504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930856269.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 4088.45, 20200504.0, 'NAH4', 1930856269.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 7505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- corp', 2020.0, 2960617942.0, '2020-03-02', 20200302, 20200302, '2020-03-20', 'CAD', 'RV', 1.0, 39904.12, 20200310.0, 'CA10', 2960617942.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 7506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE systems', 2020.0, 1930697815.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 19111.38, 20200325.0, 'NAA8', 1930697815.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M foundation', 2020.0, 2960629589.0, '2020-04-24', 20200424, 20200424, '2020-05-05', 'CAD', 'RV', 1.0, 7866.16, 20200425.0, 'CA10', 2960629589.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 7508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930699888.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 13372.3, 20200326.0, 'NAH4', 1930699888.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER ', 2020.0, 1930781116.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 48445.1, 20200413.0, 'NAA8', 1930781116.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930673715.0, '2020-03-24', 20200319, 20200324, '2020-05-28', 'USD', 'RV', 1.0, 168.0, 20200324.0, 'NAGD', 1930673715.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 7511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930857767.0, '2020-05-05', 20200505, 20200505, '2020-05-11', 'USD', 'RV', 1.0, 12435.68, 20200501.0, 'NAM2', 1930857767.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930683620.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 165.9, 20200321.0, 'NAA8', 1930683620.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930684632.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 18376.33, 20200323.0, 'NAA8', 1930684632.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930809954.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 11799.36, 20200422.0, 'NAA8', 1930809954.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930740301.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 27676.45, 20200403.0, 'NAU5', 1930740301.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 7516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930833258.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 31988.41, 20200429.0, 'NAA8', 1930833258.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930730835.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 6154.03, 20200402.0, 'NAA8', 1930730835.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930670975.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 2753.74, 20200320.0, 'NAA8', 1930670975.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930872460.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 6813.61, 20200507.0, 'NAH4', 1930872460.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 7520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR corporation', 2020.0, 1930688324.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 80920.0, 20200325.0, 'NAA8', 1930688324.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930554551.0, '2020-02-27', 20200221, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 2710.56, 20200227.0, 'NAH4', 1930554551.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 7522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200779051, 'AFFILI associates', 2020.0, 1930726216.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 70877.87, 20200331.0, 'NAA8', 1930726216.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 7523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930739381.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 16054.69, 20200405.0, 'NAA8', 1930739381.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930666506.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 31.53, 20200318.0, 'NAH4', 1930666506.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS systems', 2020.0, 1930831911.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 10060.33, 20200429.0, 'NAA8', 1930831911.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M trust', 2020.0, 1930820187.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 16435.66, 20200423.0, 'NAA8', 1930820187.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930703644.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 3403.8, 20200326.0, 'NAH4', 1930703644.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO trust', 2020.0, 1930589362.0, '2020-03-05', 20200302, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 11525.44, 20200305.0, 'NAA8', 1930589362.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930645815.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 588.49, 20200312.0, 'NAA8', 1930645815.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930752289.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 2454.24, 20200406.0, 'NAH4', 1930752289.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930774183.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 36978.55, 20200410.0, 'NAA8', 1930774183.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC corporation', 2020.0, 2960620448.0, '2020-03-14', 20200314, 20200314, '2020-03-31', 'CAD', 'RV', 1.0, 21566.59, 20200321.0, 'CA10', 2960620448.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 7533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK in', 2020.0, 1930753131.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 20511.02, 20200406.0, 'NAA8', 1930753131.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 7534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930851111.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 15174.69, 20200505.0, 'NAH4', 1930851111.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 7535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930623047.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 71697.33, 20200310.0, 'NAH4', 1930623047.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930603197.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 83685.62, 20200306.0, 'NAH4', 1930603197.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930708689.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 661.11, 20200327.0, 'NAH4', 1930708689.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER ', 2020.0, 1930717562.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 69249.9, 20200329.0, 'NAA8', 1930717562.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930789809.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 788.0, 20200416.0, 'NAA8', 1930789809.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 7540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F foundation', 2020.0, 1930605825.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 29884.65, 20200304.0, 'NAA8', 1930605825.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930858142.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 1626.33, 20200505.0, 'NAH4', 1930858142.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 7542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F systems', 2020.0, 1930617539.0, '2020-03-08', 20200306, 20200308, '2020-03-08', 'USD', 'RV', 1.0, 53341.92, 20200308.0, 'NAX2', 1930617539.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 7543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930798357.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 1627.22, 20200420.0, 'NAH4', 1930798357.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930801015.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 118830.74, 20200419.0, 'NAH4', 1930801015.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100036066, 'GROC corp', 2020.0, 1930855354.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 34936.65, 20200506.0, 'NAA8', 1930855354.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930686175.0, '2020-03-23', 20200322, 20200323, '2020-05-27', 'USD', 'RV', 1.0, 14282.04, 20200323.0, 'NAGD', 1930686175.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 7547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E corporation', 2020.0, 1930804502.0, '2020-04-23', 20200420, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 21739.68, 20200423.0, 'NAA8', 1930804502.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M ', 2020.0, 1930837896.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 73037.17, 20200429.0, 'NAA8', 1930837896.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 7549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727278, 'BLOU llc', 2020.0, 1930781266.0, '2020-04-16', 20200413, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 72878.4, 20200416.0, 'NAA8', 1930781266.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 7550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930883383.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 4453.43, 20200510.0, 'NAH4', 1930883383.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 7551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930647756.0, '2020-03-15', 20200313, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 12219.74, 20200315.0, 'NAH4', 1930647756.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930610208.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 15367.37, 20200307.0, 'NAA8', 1930610208.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200712105, 'WALG foundation', 2020.0, 1930690749.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 127184.06, 20200323.0, 'NAA8', 1930690749.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corporation', 2020.0, 1930706413.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 72459.37, 20200327.0, 'NAA8', 1930706413.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE ', 2020.0, 1930730695.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 101021.85, 20200403.0, 'NAA8', 1930730695.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL us', 2020.0, 1930664426.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 530.3, 20200317.0, 'NAA8', 1930664426.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930592407.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 540.55, 20200303.0, 'NAA8', 1930592407.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100006311, 'QUALITY C us', 2020.0, 1930668525.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 20175.8, 20200318.0, 'NAA8', 1930668525.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930611764.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 22967.94, 20200309.0, 'NAC6', 1930611764.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930622695.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 4164.08, 20200308.0, 'NAA8', 1930622695.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 7561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930780507.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 58460.11, 20200414.0, 'NAA8', 1930780507.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960623584.0, '2020-03-26', 20200326, 20200326, '2020-04-07', 'CAD', 'RV', 1.0, 1547.09, 20200328.0, 'CA10', 2960623584.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 7563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930776690.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 5560.94, 20200411.0, 'NAH4', 1930776690.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930888694.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 15104.56, 20200512.0, 'NAH4', 1930888694.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 7565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930822760.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 156251.48, 20200424.0, 'NAU5', 1930822760.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC corp', 2020.0, 2960629961.0, '2020-04-21', 20200421, 20200421, '2020-05-10', 'CAD', 'RV', 1.0, 56871.87, 20200430.0, 'CA10', 2960629961.0, 1, '2020-05-16', '0-15 days' ); /* INSERT QUERY NO: 7567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- systems', 2020.0, 2960620899.0, '2020-03-15', 20200315, 20200315, '2020-04-03', 'CAD', 'RV', 1.0, 12062.9, 20200324.0, 'CA10', 2960620899.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 7568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930767156.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 15180.74, 20200410.0, 'NAA8', 1930767156.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030964, 'NATURA systems', 2020.0, 1930744530.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 820.0, 20200403.0, 'NAA8', 1930744530.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH in', 2020.0, 1930780869.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 50605.19, 20200413.0, 'NAA8', 1930780869.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930860253.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 82895.59, 20200507.0, 'NAA8', 1930860253.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930690859.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 10947.26, 20200326.0, 'NAH4', 1930690859.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930852725.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 34902.04, 20200505.0, 'NAA8', 1930852725.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930789749.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 3035.63, 20200416.0, 'NAA8', 1930789749.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 7575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104508, 'BULK systems', 2020.0, 2960621162.0, '2020-03-17', 20200318, 20200317, '2020-03-29', 'CAD', 'RV', 1.0, 27455.01, 20200319.0, 'CA10', 2960621162.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 7576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930805236.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 18535.23, 20200422.0, 'NAH4', 1930805236.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN corporation', 2020.0, 1930809769.0, '2020-04-24', 20200421, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 3671.68, 20200424.0, 'NAA8', 1930809769.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930674691.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 16647.45, 20200322.0, 'NAA8', 1930674691.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930693058.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 134.59, 20200324.0, 'NAA8', 1930693058.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE co', 2020.0, 1930886449.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 34488.0, 20200512.0, 'NAA8', 1930886449.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 7581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930782697.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 2477.0, 20200413.0, 'NAH4', 1930782697.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 7582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE ', 2020.0, 1930688689.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 3417.08, 20200323.0, 'NAA8', 1930688689.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930674466.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 1898.9, 20200322.0, 'NAH4', 1930674466.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930788682.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 32417.56, 20200415.0, 'NAH4', 1930788682.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930683369.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 1898.2, 20200322.0, 'NAH4', 1930683369.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930585892.0, '2020-03-03', 20200301, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 15967.06, 20200303.0, 'NAH4', 1930585892.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 7587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200822668, 'SUN ', 2020.0, 1930809620.0, '2020-04-27', 20200421, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 10122.24, 20200427.0, 'NAA8', 1930809620.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corp', 2020.0, 1930581014.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 107488.19, 20200229.0, 'NAA8', 1930581014.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 7589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930813542.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 72946.58, 20200421.0, 'NAU5', 1930813542.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930575407.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 36479.99, 20200227.0, 'NAH4', 1930575407.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 7591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST llc', 2020.0, 1930685613.0, '2020-03-25', 20200323, 20200325, '2020-05-29', 'USD', 'RV', 1.0, 1715.7, 20200325.0, 'NAGD', 1930685613.0, 1, '2020-05-27', 'early' ); /* INSERT QUERY NO: 7592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930653485.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 97214.24, 20200315.0, 'NAA8', 1930653485.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930723180.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 100135.3, 20200330.0, 'NAA8', 1930723180.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE llc', 2020.0, 1930570140.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 25376.88, 20200227.0, 'NAA8', 1930570140.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 7595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930772103.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 64.73, 20200410.0, 'NAH4', 1930772103.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930580630.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 11307.78, 20200228.0, 'NAH4', 1930580630.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930652143.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 108809.89, 20200314.0, 'NAC6', 1930652143.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO us', 2020.0, 2960627431.0, '2020-04-08', 20200408, 20200408, '2020-04-20', 'CAD', 'RV', 1.0, 1909.1, 20200410.0, 'CA10', 2960627431.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 7599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930833500.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 31345.03, 20200428.0, 'NAH4', 1930833500.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F llc', 2020.0, 2960620342.0, '2020-03-11', 20200311, 20200311, '2020-03-21', 'CAD', 'RV', 1.0, 39.65, 20200311.0, 'CA10', 2960620342.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 7601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103409, 'BUTTE llc', 2020.0, 1991839787.0, '2020-03-10', 20200306, 20200310, '2020-04-09', 'USD', 'RV', 1.0, 780.85, 20200310.0, 'NAVE', 1991839787.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 7602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930604581.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 14863.44, 20200306.0, 'NAH4', 1930604581.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930653261.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 1356.36, 20200317.0, 'NAH4', 1930653261.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930604949.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 16152.81, 20200306.0, 'NAH4', 1930604949.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930772380.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 15123.85, 20200412.0, 'NAH4', 1930772380.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO llc', 2020.0, 1930721774.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 149729.46, 20200331.0, 'NAA8', 1930721774.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930717632.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 252.48, 20200329.0, 'NAA8', 1930717632.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930653290.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 2880.26, 20200317.0, 'NAH4', 1930653290.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930774861.0, '2020-04-10', 20200410, 20200410, '2020-05-14', 'USD', 'RV', 1.0, 5402.65, 20200410.0, 'NAAW', 1930774861.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER ', 2020.0, 1930637201.0, '2020-03-10', 20200311, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 22655.64, 20200310.0, 'NAA8', 1930637201.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036538, 'DENVER us', 2020.0, 1930866257.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 17052.0, 20200507.0, 'NAA8', 1930866257.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930647306.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 12762.58, 20200314.0, 'NAC6', 1930647306.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS ', 2020.0, 1930860280.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 46761.58, 20200507.0, 'NAA8', 1930860280.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930787832.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 9936.4, 20200416.0, 'NAH4', 1930787832.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 7615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200078795, 'H T H associates', 2020.0, 1930760251.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 4618.65, 20200407.0, 'NAA8', 1930760251.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M llc', 2020.0, 2960622774.0, '2020-03-22', 20200322, 20200322, '2020-04-01', 'CAD', 'RV', 1.0, 39068.9, 20200322.0, 'CA10', 2960622774.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 7617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930622852.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 14662.77, 20200309.0, 'NAH4', 1930622852.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930840980.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 95317.34, 20200430.0, 'NAC6', 1930840980.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930586718.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 3797.1, 20200304.0, 'NAH4', 1930586718.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 7620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930828466.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 9613.12, 20200426.0, 'NAH4', 1930828466.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930761483.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 15026.34, 20200410.0, 'NAA8', 1930761483.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH associates', 2020.0, 1930870537.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 21404.36, 20200506.0, 'NAA8', 1930870537.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930739779.0, '2020-04-06', 20200403, 20200406, '2020-06-10', 'USD', 'RV', 1.0, 436.8, 20200406.0, 'NAGD', 1930739779.0, 1, '2020-06-06', 'early' ); /* INSERT QUERY NO: 7624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930583702.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 603.39, 20200302.0, 'NAC6', 1930583702.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793319, 'SHERM\'S associates', 2020.0, 1930722691.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 26255.84, 20200401.0, 'NAA8', 1930722691.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930768691.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 38325.96, 20200409.0, 'NAH4', 1930768691.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200763814, 'SYSCO F us', 2020.0, 1930614124.0, '2020-03-06', 20200306, 20200306, '2020-03-26', 'USD', 'RV', 1.0, 21888.84, 20200306.0, 'NAD1', 1930614124.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO co', 2020.0, 2960629878.0, '2020-04-21', 20200421, 20200421, '2020-05-04', 'CAD', 'RV', 1.0, 227923.01, 20200424.0, 'CA10', 2960629878.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 7629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930652088.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 6840.36, 20200315.0, 'NAH4', 1930652088.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106181, 'THE corporation', 2020.0, 2960619626.0, '2020-03-08', 20200308, 20200308, '2020-03-27', 'CAD', 'RV', 1.0, 5125.5, 20200317.0, 'CA10', 2960619626.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 7631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930831349.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 13632.41, 20200429.0, 'NAH4', 1930831349.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930848381.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 35066.3, 20200501.0, 'NAA8', 1930848381.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930718059.0, '2020-04-02', 20200329, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 14329.35, 20200402.0, 'NAH4', 1930718059.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 7634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930839266.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 6059.06, 20200430.0, 'NAH4', 1930839266.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 7635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corporation', 2020.0, 1930666215.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 116207.27, 20200317.0, 'NAA8', 1930666215.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930578768.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 3242.81, 20200228.0, 'NAH4', 1930578768.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER corp', 2020.0, 1930692848.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 78304.6, 20200325.0, 'NAA8', 1930692848.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC llc', 2020.0, 1930808998.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 44405.61, 20200422.0, 'NAA8', 1930808998.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742344, 'MAINES ', 2020.0, 1930605097.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 13867.39, 20200306.0, 'NAA8', 1930605097.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER in', 2020.0, 2960618268.0, '2020-03-03', 20200303, 20200303, '2020-03-21', 'CAD', 'RV', 1.0, 14073.32, 20200311.0, 'CA10', 2960618268.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 7641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER corp', 2020.0, 1930810436.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 47182.16, 20200422.0, 'NAA8', 1930810436.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN co', 2020.0, 1930717871.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 44581.81, 20200329.0, 'NAA8', 1930717871.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200696090, 'UNITE us', 2020.0, 1930826817.0, '2020-04-30', 20200425, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2378.02, 20200430.0, 'NAA8', 1930826817.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930703320.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 8921.55, 20200326.0, 'NAH4', 1930703320.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930799874.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 96611.03, 20200419.0, 'NAA8', 1930799874.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200729290, 'KROGER us', 2020.0, 1930747895.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 28591.43, 20200405.0, 'NAA8', 1930747895.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 7647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER corporation', 2020.0, 1930592147.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 16592.17, 20200303.0, 'NAA8', 1930592147.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104429, 'COSTCO systems', 2020.0, 2960623069.0, '2020-03-21', 20200321, 20200321, '2020-04-03', 'CAD', 'RV', 1.0, 3001.18, 20200324.0, 'CA10', 2960623069.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 7649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930592188.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 42604.68, 20200304.0, 'NAH4', 1930592188.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 7650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930764803.0, '2020-04-15', 20200408, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 429.51, 20200415.0, 'NAH4', 1930764803.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D us', 2020.0, 1930577302.0, '2020-03-04', 20200302, 20200304, '2020-04-05', 'USD', 'RV', 1.0, 9716.64, 20200304.0, 'NA32', 1930577302.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M trust', 2020.0, 2960622990.0, '2020-03-23', 20200323, 20200323, '2020-04-03', 'CAD', 'RV', 1.0, 220053.96, 20200324.0, 'CA10', 2960622990.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 7653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930848486.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 10557.63, 20200503.0, 'NAH4', 1930848486.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030964, 'NATURA in', 2020.0, 1930600863.0, '2020-03-11', 20200304, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 11080.77, 20200311.0, 'NAA8', 1930600863.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 7655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930618719.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 132.72, 20200301.0, 'NAM4', 1930618719.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200622385, 'US in', 2020.0, 1930604222.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 29060.6, 20200304.0, 'NAA8', 1930604222.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER associates', 2020.0, 1930747626.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 64836.69, 20200404.0, 'NAA8', 1930747626.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930660609.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 11307.78, 20200317.0, 'NAH4', 1930660609.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT trust', 2020.0, 1930789236.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 20144.45, 20200415.0, 'NAA8', 1930789236.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 7660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930754010.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 23531.95, 20200405.0, 'NAH4', 1930754010.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930655305.0, '2020-03-16', 20200316, 20200316, '2020-04-05', 'USD', 'RV', 1.0, 1527.66, 20200316.0, 'NAD1', 1930655305.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930698451.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 23444.79, 20200325.0, 'NAA8', 1930698451.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100011958, 'IND corp', 2020.0, 1991839554.0, '2020-03-09', 20200309, 20200309, '2020-04-23', 'USD', 'RV', 1.0, 10.08, 20200309.0, 'NAVF', 1991839554.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 7664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C co', 2020.0, 1930828880.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 2507.11, 20200428.0, 'NAA8', 1930828880.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930883468.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 17557.65, 20200510.0, 'NAH4', 1930883468.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 7666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104472, 'MARTIN us', 2020.0, 2960629606.0, '2020-04-18', 20200418, 20200418, '2020-05-08', 'CAD', 'RV', 1.0, 1647.36, 20200428.0, 'CA10', 2960629606.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 7667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER trust', 2020.0, 2960618712.0, '2020-03-04', 20200305, 20200304, '2020-03-18', 'CAD', 'RV', 1.0, 3105.34, 20200308.0, 'CA10', 2960618712.0, 1, '2020-03-23', '0-15 days' ); /* INSERT QUERY NO: 7668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK trust', 2020.0, 1930647169.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 74739.52, 20200313.0, 'NAA8', 1930647169.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN corporation', 2020.0, 1930672484.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 4900.37, 20200322.0, 'NAA8', 1930672484.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ ', 2020.0, 1930724385.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 102208.85, 20200331.0, 'NAA8', 1930724385.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER foundation', 2020.0, 1930782925.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 61610.45, 20200414.0, 'NAA8', 1930782925.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930813319.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 35540.44, 20200423.0, 'NAAX', 1930813319.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER corporation', 2020.0, 1930623187.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 102226.37, 20200309.0, 'NAA8', 1930623187.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA co', 2020.0, 1930747897.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 37767.1, 20200406.0, 'NAA8', 1930747897.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 7675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE corp', 2020.0, 1930829183.0, '2020-04-30', 20200428, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 149514.93, 20200430.0, 'NAA8', 1930829183.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930806293.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 1688.64, 20200422.0, 'NAH4', 1930806293.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930822679.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 33826.43, 20200426.0, 'NAH4', 1930822679.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930610832.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 489.91, 20200306.0, 'NAA8', 1930610832.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797984, 'PIGGLY corporation', 2020.0, 1930635472.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 21611.21, 20200312.0, 'NAA8', 1930635472.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU foundation', 2020.0, 1930772939.0, '2020-04-13', 20200410, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 20309.46, 20200413.0, 'NAA8', 1930772939.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930830587.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 1009.84, 20200505.0, 'NAA8', 1930830587.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930752526.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 264.96, 20200405.0, 'NAA8', 1930752526.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930826947.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 1898.2, 20200426.0, 'NAH4', 1930826947.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930611630.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 18679.65, 20200307.0, 'NAA8', 1930611630.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 7685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036292, 'AMY llc', 2020.0, 1930713883.0, '2020-03-27', 20200328, 20200327, '2020-04-12', 'USD', 'RV', 1.0, 20858.79, 20200327.0, 'NA3F', 1930713883.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930584257.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 71.52, 20200301.0, 'NAA8', 1930584257.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 7687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930828014.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 9005.47, 20200426.0, 'NAH4', 1930828014.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930650696.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 27583.04, 20200314.0, 'NAH4', 1930650696.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930584076.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 12219.74, 20200302.0, 'NAH4', 1930584076.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH ', 2020.0, 1930645929.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 115589.32, 20200312.0, 'NAA8', 1930645929.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER in', 2020.0, 1930756530.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 46609.14, 20200408.0, 'NAA8', 1930756530.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930693776.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 1073.96, 20200327.0, 'NAH4', 1930693776.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930681338.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 21379.43, 20200323.0, 'NAAX', 1930681338.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200396637, 'LAWL foundation', 2020.0, 1930633678.0, '2020-03-06', 20200310, 20200306, '2020-04-05', 'USD', 'RV', 1.0, 52901.64, 20200306.0, 'NAD5', 1930633678.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 7695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200200412, 'DRIS llc', 2020.0, 1930830078.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 47012.56, 20200427.0, 'NAA8', 1930830078.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA foundation', 2020.0, 1930652419.0, '2020-03-17', 20200314, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 23298.58, 20200317.0, 'NAA8', 1930652419.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 7697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200418007, 'AM systems', 2020.0, 1930843448.0, '2020-05-03', 20200504, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 3668.08, 20200503.0, 'NAA8', 1930843448.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930698326.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 8352.99, 20200326.0, 'NAH4', 1930698326.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930846908.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 11302.67, 20200502.0, 'NAH4', 1930846908.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930840990.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 50849.9, 20200430.0, 'NAH4', 1930840990.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 7701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930581401.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 69670.65, 20200228.0, 'NAA8', 1930581401.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 7702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930736107.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 22540.32, 20200402.0, 'NAH4', 1930736107.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 7703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930683878.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 22502.78, 20200322.0, 'NAH4', 1930683878.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA foundation', 2020.0, 1930817947.0, '2020-04-23', 20200423, 20200423, '2020-04-26', 'USD', 'RV', 1.0, 8366.41, 20200416.0, 'NAM2', 1930817947.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M in', 2020.0, 1930830033.0, '2020-04-28', 20200427, 20200428, '2020-04-15', 'USD', 'RV', 1.0, 1709.19, 20200415.0, 'NACG', 1930830033.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930714826.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 6459.58, 20200328.0, 'NAH4', 1930714826.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT systems', 2020.0, 1930666094.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 59791.92, 20200319.0, 'NAA8', 1930666094.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M in', 2020.0, 2960626761.0, '2020-04-05', 20200405, 20200405, '2020-04-15', 'CAD', 'RV', 1.0, 346.36, 20200405.0, 'CA10', 2960626761.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 7709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799180, 'CHEN trust', 2020.0, 1930823305.0, '2020-04-29', 20200424, 20200429, '2020-05-19', 'USD', 'RV', 1.0, 23127.9, 20200429.0, 'NAD1', 1930823305.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719526, 'SHARP S corporation', 2020.0, 1930827256.0, '2020-05-01', 20200425, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 8772.6, 20200501.0, 'NAA8', 1930827256.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F corporation', 2020.0, 1930648014.0, '2020-03-17', 20200313, 20200317, '2020-03-17', 'USD', 'RV', 1.0, 16080.63, 20200317.0, 'NAX2', 1930648014.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 7712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE corporation', 2020.0, 1930704353.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 21756.94, 20200328.0, 'NAA8', 1930704353.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930780718.0, '2020-04-11', 20200413, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 1336.05, 20200411.0, 'NAA8', 1930780718.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930842585.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 16848.23, 20200430.0, 'NAH4', 1930842585.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 7715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200984794, 'GREA llc', 2020.0, 1930703342.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 8873.08, 20200325.0, 'NAA8', 1930703342.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930632620.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 4388.75, 20200310.0, 'NAH4', 1930632620.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - co', 2020.0, 1930814638.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 37531.99, 20200422.0, 'NAA8', 1930814638.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930594625.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 70358.57, 20200304.0, 'NAA8', 1930594625.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930753162.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 19859.27, 20200407.0, 'NAC6', 1930753162.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930658181.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 2639.03, 20200317.0, 'NAA8', 1930658181.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930731429.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 364.12, 20200402.0, 'NAA8', 1930731429.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930788468.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 56875.22, 20200414.0, 'NAA8', 1930788468.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930642350.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 70794.33, 20200313.0, 'NAH4', 1930642350.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 7724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705742, 'DOT foundation', 2020.0, 1930624319.0, '2020-03-10', 20200309, 20200310, '2020-04-11', 'USD', 'RV', 1.0, 54551.23, 20200310.0, 'NA32', 1930624319.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE trust', 2020.0, 2960621049.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 111693.96, 20200318.0, 'CA10', 2960621049.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 7726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930753300.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 15138.07, 20200407.0, 'NAH4', 1930753300.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930674197.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 1214.84, 20200320.0, 'NAA8', 1930674197.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930629444.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 8674.85, 20200310.0, 'NAH4', 1930629444.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930690020.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 11188.03, 20200325.0, 'NAA8', 1930690020.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE in', 2020.0, 1930844204.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 17125.92, 20200501.0, 'NAA8', 1930844204.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 7731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763229, 'MAINES systems', 2020.0, 1930655525.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 13867.39, 20200318.0, 'NAA8', 1930655525.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 7732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC foundation', 2020.0, 1930599540.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 20376.57, 20200301.0, 'NAM4', 1930599540.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930715306.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 23140.97, 20200329.0, 'NAH4', 1930715306.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR us', 2020.0, 1930733270.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 310.26, 20200402.0, 'NAA8', 1930733270.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE systems', 2020.0, 1930684152.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 78727.58, 20200323.0, 'NAA8', 1930684152.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG co', 2020.0, 1930673960.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 14022.02, 20200320.0, 'NAA8', 1930673960.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930788013.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 58052.73, 20200415.0, 'NAA8', 1930788013.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ corporation', 2020.0, 1930666969.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 155.84, 20200318.0, 'NAA8', 1930666969.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930686594.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 14924.32, 20200325.0, 'NAH4', 1930686594.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - co', 2020.0, 1930814638.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 37531.99, 20200422.0, 'NAA8', 1930814638.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG corp', 2020.0, 1930833303.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 41184.6, 20200429.0, 'NAA8', 1930833303.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 7742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742521, 'GLA systems', 2020.0, 1930703560.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 24364.29, 20200327.0, 'NAA8', 1930703560.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO trust', 2020.0, 1930844505.0, '2020-05-01', 20200430, 20200501, '2020-05-11', 'USD', 'RV', 1.0, 18145.19, 20200501.0, 'NA10', 1930844505.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corp', 2020.0, 1930727786.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 1662.01, 20200401.0, 'NAA8', 1930727786.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 7745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930718134.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 18077.96, 20200331.0, 'NAA8', 1930718134.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930789206.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 38156.19, 20200415.0, 'NAH4', 1930789206.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930683877.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 5769.82, 20200322.0, 'NAH4', 1930683877.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH ', 2020.0, 1930626072.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 22938.38, 20200311.0, 'NAA8', 1930626072.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930686619.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 52774.85, 20200324.0, 'NAH4', 1930686619.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930758571.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 242.09, 20200407.0, 'NAA8', 1930758571.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930799238.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 3228.13, 20200419.0, 'NAH4', 1930799238.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930730500.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 52521.44, 20200402.0, 'NAC6', 1930730500.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930784335.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 61866.63, 20200414.0, 'NAC6', 1930784335.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 7754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB associates', 2020.0, 2960624490.0, '2020-03-29', 20200329, 20200329, '2020-04-16', 'CAD', 'RV', 1.0, 98144.74, 20200406.0, 'CA10', 2960624490.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 7755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO ', 2020.0, 1930772624.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 31992.84, 20200410.0, 'NAA8', 1930772624.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200743123, 'KROGER co', 2020.0, 1930708143.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 5846.47, 20200328.0, 'NAA8', 1930708143.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT foundation', 2020.0, 1930748852.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 37010.43, 20200404.0, 'NAA8', 1930748852.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 7758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930701391.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 59151.12, 20200326.0, 'NAH4', 1930701391.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930570149.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 2807.34, 20200227.0, 'NAA8', 1930570149.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 7760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corporation', 2020.0, 1930779914.0, '2020-04-14', 20200412, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 21428.66, 20200414.0, 'NAA8', 1930779914.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC llc', 2020.0, 1930599388.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 3301.71, 20200301.0, 'NAM4', 1930599388.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE corp', 2020.0, 1930635405.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 6288.69, 20200311.0, 'NAA8', 1930635405.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726025, 'MARTI trust', 2020.0, 1930777767.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 23953.45, 20200411.0, 'NAA8', 1930777767.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930686543.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 524.54, 20200323.0, 'NAA8', 1930686543.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930759158.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 14467.0, 20200408.0, 'NAH4', 1930759158.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 7766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930617533.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 1959.21, 20200309.0, 'NAAX', 1930617533.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200071186, 'FATH corporation', 2020.0, 1930566631.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 53566.92, 20200227.0, 'NAA8', 1930566631.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 7768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO foundation', 2020.0, 1930730801.0, '2020-04-02', 20200401, 20200402, '2020-04-12', 'USD', 'RV', 1.0, 18135.88, 20200402.0, 'NA10', 1930730801.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE ', 2020.0, 1930869719.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 6427.69, 20200506.0, 'NAA8', 1930869719.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930674732.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 33.24, 20200316.0, 'NAM4', 1930674732.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER in', 2020.0, 1930774252.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 156482.5, 20200411.0, 'NAA8', 1930774252.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930637872.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 71979.41, 20200313.0, 'NAH4', 1930637872.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 7773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930648228.0, '2020-03-12', 20200313, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 943.12, 20200312.0, 'NAH4', 1930648228.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930823409.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 32287.07, 20200424.0, 'NAH4', 1930823409.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA corporation', 2020.0, 1930857722.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 236.16, 20200501.0, 'NAM4', 1930857722.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 7776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR co', 2020.0, 1930810338.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 51142.54, 20200422.0, 'NAA8', 1930810338.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930624401.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 5507.47, 20200309.0, 'NAH4', 1930624401.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930745499.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 11646.53, 20200404.0, 'NAH4', 1930745499.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930585641.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 27.6, 20200302.0, 'NAA8', 1930585641.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930685027.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 46524.89, 20200323.0, 'NAH4', 1930685027.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M trust', 2020.0, 1930687542.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 38931.96, 20200323.0, 'NAA8', 1930687542.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US us', 2020.0, 1930617955.0, '2020-03-06', 20200307, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 19889.98, 20200306.0, 'NAA8', 1930617955.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930863012.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 18322.94, 20200507.0, 'NAH4', 1930863012.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 7784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930580681.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 66214.21, 20200229.0, 'NAH4', 1930580681.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036318, 'TFC trust', 2020.0, 1930843384.0, '2020-04-30', 20200430, 20200430, '2020-05-10', 'USD', 'RV', 1.0, 4025.0, 20200430.0, 'NA10', 1930843384.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930637827.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 61407.2, 20200312.0, 'NAA8', 1930637827.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930753405.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 4720.02, 20200407.0, 'NAH4', 1930753405.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930698117.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 22972.78, 20200326.0, 'NAC6', 1930698117.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS trust', 2020.0, 1930762360.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 58634.16, 20200408.0, 'NAA8', 1930762360.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930718259.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 21698.67, 20200330.0, 'NAH4', 1930718259.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 7791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC us', 2020.0, 1930661562.0, '2020-03-24', 20200317, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 43079.5, 20200324.0, 'NAA8', 1930661562.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC us', 2020.0, 1930772993.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 6533.85, 20200409.0, 'NAA8', 1930772993.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200418007, 'AM associates', 2020.0, 1930842187.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 1111.69, 20200505.0, 'NAA8', 1930842187.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930704281.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 2373.96, 20200327.0, 'NAH4', 1930704281.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 7795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930683601.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 50361.99, 20200321.0, 'NAH4', 1930683601.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930648435.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 27002.7, 20200314.0, 'NAH4', 1930648435.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO associates', 2020.0, 1930651032.0, '2020-03-16', 20200313, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 4258.07, 20200316.0, 'NAA8', 1930651032.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 7798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930834294.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 24132.37, 20200430.0, 'NAH4', 1930834294.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 7799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M llc', 2020.0, 2960623142.0, '2020-03-21', 20200321, 20200321, '2020-03-31', 'CAD', 'RV', 1.0, 98956.76, 20200321.0, 'CA10', 2960623142.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 7800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930772377.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 335.98, 20200409.0, 'NAA8', 1930772377.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE in', 2020.0, 1930636495.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 14873.88, 20200312.0, 'NAA8', 1930636495.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930823831.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 69275.34, 20200424.0, 'NAA8', 1930823831.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & foundation', 2020.0, 1930589858.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 5.81, 20200303.0, 'NAX2', 1930589858.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 7804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930582686.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 4644.04, 20200229.0, 'NAH4', 1930582686.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930777695.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 25001.06, 20200411.0, 'NAU5', 1930777695.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 7806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930654277.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 39922.05, 20200316.0, 'NAA8', 1930654277.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930584529.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 58753.81, 20200229.0, 'NAH4', 1930584529.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA corporation', 2020.0, 1930745955.0, '2020-04-04', 20200404, 20200404, '2020-04-24', 'USD', 'RV', 1.0, 3738.17, 20200401.0, 'NAM4', 1930745955.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930779890.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 28653.24, 20200413.0, 'NAC6', 1930779890.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S us', 2020.0, 1930729155.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 12604.88, 20200403.0, 'NAA8', 1930729155.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA systems', 2020.0, 1930606666.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 593.9, 20200301.0, 'NAM4', 1930606666.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930799540.0, '2020-04-17', 20200418, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 31064.22, 20200417.0, 'NAA8', 1930799540.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO trust', 2020.0, 1930787559.0, '2020-04-14', 20200414, 20200414, '2020-04-24', 'USD', 'RV', 1.0, 15026.34, 20200414.0, 'NA10', 1930787559.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 7814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930828472.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 4224.98, 20200426.0, 'NAH4', 1930828472.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930798034.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 1856.4, 20200419.0, 'NAC6', 1930798034.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 7816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO us', 2020.0, 1930623826.0, '2020-03-06', 20200309, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 46697.09, 20200306.0, 'NAA8', 1930623826.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 7817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100024776, 'PEA trust', 2020.0, 1930769214.0, '2020-04-14', 20200409, 20200414, '2020-05-19', 'USD', 'RV', 1.0, 3088.75, 20200414.0, 'NAG2', 1930769214.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 7818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL foundation', 2020.0, 1930581699.0, '2020-03-05', 20200229, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 32694.95, 20200305.0, 'NAA8', 1930581699.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE co', 2020.0, 1930710722.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 81977.17, 20200327.0, 'NAA8', 1930710722.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER associates', 2020.0, 2960628365.0, '2020-04-23', 20200423, 20200423, '2020-05-12', 'CAD', 'RV', 1.0, 110930.68, 20200502.0, 'CA10', 2960628365.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 7821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE systems', 2020.0, 1930730296.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 152982.75, 20200402.0, 'NAA8', 1930730296.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE ', 2020.0, 1930607415.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 48452.35, 20200306.0, 'NAA8', 1930607415.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW associates', 2020.0, 1930654531.0, '2020-03-18', 20200316, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 19445.5, 20200318.0, 'NAGD', 1930654531.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 7824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930825970.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 19597.81, 20200426.0, 'NAH4', 1930825970.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH foundation', 2020.0, 1930719906.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 12075.24, 20200331.0, 'NAC6', 1930719906.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930774160.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 205.45, 20200410.0, 'NAA8', 1930774160.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930749622.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 15920.79, 20200405.0, 'NAH4', 1930749622.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE in', 2020.0, 1930801594.0, '2020-04-22', 20200419, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 14221.28, 20200422.0, 'NAA8', 1930801594.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930675424.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 123920.04, 20200320.0, 'NAC6', 1930675424.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930724151.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 38333.04, 20200331.0, 'NAH4', 1930724151.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 7831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930751813.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 39105.32, 20200407.0, 'NAH4', 1930751813.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST us', 2020.0, 1930671196.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 32715.47, 20200319.0, 'NAAX', 1930671196.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 7833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104240, 'FEDER in', 2020.0, 2960628029.0, '2020-04-11', 20200411, 20200411, '2020-04-28', 'CAD', 'RV', 1.0, 131400.69, 20200418.0, 'CA10', 2960628029.0, 1, '2020-05-02', '0-15 days' ); /* INSERT QUERY NO: 7834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930850753.0, '2020-05-06', 20200502, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 35654.97, 20200506.0, 'NAH4', 1930850753.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 7835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930875873.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 14161.81, 20200507.0, 'NAH4', 1930875873.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 7836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200728270, 'HEI us', 2020.0, 1930727241.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 36469.2, 20200401.0, 'NAA8', 1930727241.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 7837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S trust', 2020.0, 1930610500.0, '2020-03-07', 20200305, 20200307, '2020-05-11', 'USD', 'RV', 1.0, 541.12, 20200307.0, 'NAGD', 1930610500.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR corporation', 2020.0, 1930761089.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 5422.16, 20200409.0, 'NAA8', 1930761089.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930690805.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 50113.48, 20200325.0, 'NAC6', 1930690805.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corp', 2020.0, 1930848973.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 15196.16, 20200502.0, 'NAA8', 1930848973.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930855215.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 142.89, 20200504.0, 'NAA8', 1930855215.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930831789.0, '2020-05-02', 20200428, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 36547.38, 20200502.0, 'NAH4', 1930831789.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200740393, 'LABAT associates', 2020.0, 1930885259.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 50382.63, 20200512.0, 'NAA8', 1930885259.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 7844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M foundation', 2020.0, 2960621298.0, '2020-03-22', 20200322, 20200322, '2020-03-31', 'CAD', 'RV', 1.0, 63449.82, 20200321.0, 'CA10', 2960621298.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 7845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE corp', 2020.0, 1930610699.0, '2020-03-06', 20200307, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 84073.71, 20200306.0, 'NAA8', 1930610699.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930594062.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 35568.6, 20200304.0, 'NAH4', 1930594062.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 7847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930856936.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 72895.62, 20200505.0, 'NAA8', 1930856936.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930704089.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 16301.91, 20200326.0, 'NAA8', 1930704089.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930575907.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 737.89, 20200227.0, 'NAA8', 1930575907.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 7850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930683228.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 41629.12, 20200321.0, 'NAH4', 1930683228.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER associates', 2020.0, 1930791382.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 61638.24, 20200417.0, 'NAA8', 1930791382.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930793245.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 2737.94, 20200417.0, 'NAH4', 1930793245.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 7853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960622787.0, '2020-03-23', 20200323, 20200323, '2020-04-02', 'CAD', 'RV', 1.0, 532.23, 20200323.0, 'CA10', 2960622787.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 7854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930800263.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 1553.16, 20200418.0, 'NAH4', 1930800263.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078795, 'H T H trust', 2020.0, 1930593888.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 2524.39, 20200304.0, 'NAA8', 1930593888.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930739055.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 22400.31, 20200402.0, 'NAH4', 1930739055.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 7857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930751257.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 12668.17, 20200407.0, 'NAH4', 1930751257.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930662967.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 56736.74, 20200318.0, 'NAH4', 1930662967.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 7859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE in', 2020.0, 1930675021.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 170366.02, 20200319.0, 'NAA8', 1930675021.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA foundation', 2020.0, 1930778496.0, '2020-04-14', 20200412, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 28760.55, 20200414.0, 'NAA8', 1930778496.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930768617.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 15042.83, 20200409.0, 'NAC6', 1930768617.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930855133.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 1383.48, 20200503.0, 'NAU5', 1930855133.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 7863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE corporation', 2020.0, 1930810399.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 52628.59, 20200422.0, 'NAA8', 1930810399.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 7864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930582984.0, '2020-02-28', 20200228, 20200228, '2020-04-02', 'USD', 'RV', 1.0, 18724.89, 20200228.0, 'NAAW', 1930582984.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930637653.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 24841.78, 20200312.0, 'NAH4', 1930637653.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930586773.0, '2020-03-02', 20200302, 20200302, '2020-03-08', 'USD', 'RV', 1.0, 1273.74, 20200301.0, 'NAM1', 1930586773.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 7867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930618699.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 15367.37, 20200308.0, 'NAA8', 1930618699.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER ', 2020.0, 1930708254.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 10106.87, 20200328.0, 'NAA8', 1930708254.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930828900.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 14427.49, 20200427.0, 'NAH4', 1930828900.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 7870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930784069.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 8152.68, 20200415.0, 'NAH4', 1930784069.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100011958, 'IND co', 2020.0, 1991839680.0, '2020-03-06', 20200304, 20200306, '2020-04-20', 'USD', 'RV', 1.0, 59865.38, 20200306.0, 'NAVF', 1991839680.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 7872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930604972.0, '2020-03-05', 20200305, 20200305, '2020-03-25', 'USD', 'RV', 1.0, 769.22, 20200305.0, 'NAD1', 1930604972.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC llc', 2020.0, 2960632954.0, '2020-05-07', 20200507, 20200507, '2020-05-17', 'CAD', 'RV', 1.0, 15657.05, 20200507.0, 'CA10', 2960632954.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 7874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR systems', 2020.0, 1930633772.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 24741.64, 20200310.0, 'NAA8', 1930633772.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 7875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930608257.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 13648.55, 20200306.0, 'NAH4', 1930608257.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S us', 2020.0, 1930775117.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 110456.7, 20200411.0, 'NAA8', 1930775117.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA us', 2020.0, 1930652406.0, '2020-03-17', 20200314, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 13135.59, 20200317.0, 'NAH4', 1930652406.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 7878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930875861.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 105203.36, 20200507.0, 'NAC6', 1930875861.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 7879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA ', 2020.0, 1930859755.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 2322.94, 20200505.0, 'NAA8', 1930859755.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD associates', 2020.0, 1930738506.0, '2020-04-02', 20200402, 20200402, '2020-04-22', 'USD', 'RV', 1.0, 4065.01, 20200402.0, 'NAD1', 1930738506.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 7881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO corporation', 2020.0, 1930605671.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 39455.72, 20200305.0, 'NAA8', 1930605671.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930774229.0, '2020-04-04', 20200410, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 428.72, 20200404.0, 'NAA8', 1930774229.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930688319.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 68578.06, 20200323.0, 'NAH4', 1930688319.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA co', 2020.0, 1930759322.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 12294.32, 20200407.0, 'NAA8', 1930759322.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO trust', 2020.0, 2960621407.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 10243.27, 20200318.0, 'CA10', 2960621407.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 7886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104475, 'FOC foundation', 2020.0, 2960625859.0, '2020-04-03', 20200403, 20200403, '2020-04-22', 'CAD', 'RV', 1.0, 285.38, 20200412.0, 'CA10', 2960625859.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 7887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930789573.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 7445.94, 20200416.0, 'NAH4', 1930789573.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 7888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782772, 'ASSOC G corporation', 2020.0, 1930841906.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 1623.41, 20200429.0, 'NAA8', 1930841906.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 7889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE foundation', 2020.0, 1930781979.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 60810.48, 20200414.0, 'NAA8', 1930781979.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930747239.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 22450.26, 20200404.0, 'NAA8', 1930747239.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 7891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930822454.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 45569.56, 20200423.0, 'NAH4', 1930822454.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104475, 'FOC co', 2020.0, 2960629537.0, '2020-04-22', 20200422, 20200422, '2020-05-11', 'CAD', 'RV', 1.0, 8841.92, 20200501.0, 'CA10', 2960629537.0, 1, '2020-05-13', '0-15 days' ); /* INSERT QUERY NO: 7893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR corp', 2020.0, 1930723379.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 4089.06, 20200401.0, 'NAA8', 1930723379.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 7894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930582774.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 23669.34, 20200229.0, 'NAC6', 1930582774.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 7895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT us', 2020.0, 1930670152.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 39781.39, 20200318.0, 'NAU5', 1930670152.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 7896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200797984, 'PIGGLY trust', 2020.0, 1930637715.0, '2020-03-11', 20200311, 20200311, '2020-05-15', 'USD', 'RV', 1.0, 14671.54, 20200311.0, 'NAGD', 1930637715.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930798549.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 18303.14, 20200418.0, 'NAA8', 1930798549.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S corp', 2020.0, 1930777109.0, '2020-04-13', 20200410, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 40221.36, 20200413.0, 'NAA8', 1930777109.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS co', 2020.0, 1930831317.0, '2020-04-30', 20200428, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 18117.54, 20200430.0, 'NAA8', 1930831317.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 7900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719839, 'ASSOCI co', 2020.0, 1930788262.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 90811.01, 20200415.0, 'NAA8', 1930788262.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200722369, 'PERFOR corp', 2020.0, 1930593240.0, '2020-03-16', 20200302, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21297.06, 20200316.0, 'NAA8', 1930593240.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 7902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU co', 2020.0, 1930598031.0, '2020-03-10', 20200304, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 12913.99, 20200310.0, 'NAA8', 1930598031.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930779878.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 48536.27, 20200414.0, 'NAU5', 1930779878.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 7904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780849, 'LAUREL trust', 2020.0, 1930855963.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 25599.71, 20200504.0, 'NAA8', 1930855963.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930802052.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 1322.22, 20200420.0, 'NAH4', 1930802052.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 7906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930647300.0, '2020-03-13', 20200313, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 494.23, 20200313.0, 'NAGD', 1930647300.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC trust', 2020.0, 1930599391.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 334.63, 20200301.0, 'NAM4', 1930599391.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930768519.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 6335.5, 20200409.0, 'NAH4', 1930768519.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930847194.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 943.12, 20200501.0, 'NAH4', 1930847194.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR co', 2020.0, 1930577611.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 6191.26, 20200302.0, 'NAA8', 1930577611.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT us', 2020.0, 1930712067.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 46789.3, 20200327.0, 'NAA8', 1930712067.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S co', 2020.0, 1930636931.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 2677.97, 20200312.0, 'NAA8', 1930636931.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 7913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727278, 'BLOU trust', 2020.0, 1930665296.0, '2020-03-24', 20200317, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 9800.28, 20200324.0, 'NAA8', 1930665296.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930637300.0, '2020-03-10', 20200311, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 22938.02, 20200310.0, 'NAC6', 1930637300.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E co', 2020.0, 1930602612.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 42294.69, 20200304.0, 'NAA8', 1930602612.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA ', 2020.0, 1930717058.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 100375.76, 20200329.0, 'NAA8', 1930717058.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200915438, 'GROC co', 2020.0, 1930821841.0, '2020-04-30', 20200424, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 15072.0, 20200430.0, 'NAA8', 1930821841.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 7918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO ', 2020.0, 1930632433.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 3526.91, 20200310.0, 'NAA8', 1930632433.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930585298.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 35247.39, 20200302.0, 'NAA8', 1930585298.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930726778.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 10893.31, 20200403.0, 'NAH4', 1930726778.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 7921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930698639.0, '2020-03-24', 20200325, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1122.89, 20200324.0, 'NAA8', 1930698639.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930796939.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 78.0, 20200417.0, 'NAC6', 1930796939.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 7923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930655807.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 58566.37, 20200316.0, 'NAA8', 1930655807.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 7924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930779147.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 67209.94, 20200412.0, 'NAH4', 1930779147.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930697800.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 95147.14, 20200325.0, 'NAA8', 1930697800.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA us', 2020.0, 1930685724.0, '2020-03-24', 20200323, 20200324, '2020-04-23', 'USD', 'RV', 1.0, 81148.8, 20200324.0, 'NAD5', 1930685724.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 7927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH llc', 2020.0, 1930605243.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 71698.13, 20200305.0, 'NAA8', 1930605243.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930691942.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 13213.91, 20200325.0, 'NAH4', 1930691942.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 7929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930633873.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 53636.48, 20200311.0, 'NAA8', 1930633873.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 7930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930650939.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 10562.16, 20200314.0, 'NAH4', 1930650939.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 7931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200238407, 'NAT foundation', 2020.0, 1930581539.0, '2020-03-04', 20200229, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 4880.34, 20200304.0, 'NAA8', 1930581539.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 7932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG associates', 2020.0, 1930883026.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 5889.84, 20200509.0, 'NAA8', 1930883026.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 7933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE systems', 2020.0, 1930581515.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 7367.82, 20200302.0, 'NAA8', 1930581515.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 7934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA systems', 2020.0, 1930599089.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 1090.19, 20200301.0, 'NAM2', 1930599089.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 7935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS ', 2020.0, 1930859055.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 13654.53, 20200504.0, 'NAA8', 1930859055.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 7936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930616805.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 35318.98, 20200306.0, 'NAA8', 1930616805.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 7937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930687801.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 806.87, 20200324.0, 'NAH4', 1930687801.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930752249.0, '2020-04-06', 20200406, 20200406, '2020-06-10', 'USD', 'RV', 1.0, 1765.44, 20200406.0, 'NAGD', 1930752249.0, 1, '2020-06-06', 'early' ); /* INSERT QUERY NO: 7939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA co', 2020.0, 1930837993.0, '2020-04-29', 20200429, 20200429, '2020-05-09', 'USD', 'RV', 1.0, 3134.08, 20200416.0, 'NAM4', 1930837993.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 7940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930796930.0, '2020-04-19', 20200416, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 61.29, 20200419.0, 'NAH4', 1930796930.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930684826.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 17507.81, 20200324.0, 'NAAX', 1930684826.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR us', 2020.0, 1930797368.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 70624.85, 20200418.0, 'NAA8', 1930797368.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 7943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA trust', 2020.0, 1930806555.0, '2020-04-21', 20200421, 20200421, '2020-05-09', 'USD', 'RV', 1.0, 5565.68, 20200416.0, 'NAM4', 1930806555.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 7944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930621305.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 20218.36, 20200308.0, 'NAH4', 1930621305.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 7945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F trust', 2020.0, 1930610441.0, '2020-03-07', 20200305, 20200307, '2020-03-07', 'USD', 'RV', 1.0, 11571.84, 20200307.0, 'NAX2', 1930610441.0, 1, '2020-03-13', '0-15 days' ); /* INSERT QUERY NO: 7946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930777117.0, '2020-04-14', 20200410, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 9180.53, 20200414.0, 'NAA8', 1930777117.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 7947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930689249.0, '2020-03-24', 20200324, 20200324, '2020-03-26', 'USD', 'RV', 1.0, 2393.74, 20200316.0, 'NAM2', 1930689249.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 7948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930636724.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 12845.84, 20200311.0, 'NAH4', 1930636724.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 7949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140105686, 'SYSC ', 2020.0, 2960632487.0, '2020-05-05', 20200505, 20200505, '2020-05-19', 'CAD', 'RV', 1.0, 4548.0, 20200509.0, 'CA10', 2960632487.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 7950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER us', 2020.0, 1930857918.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 116359.61, 20200504.0, 'NAA8', 1930857918.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 7951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960625439.0, '2020-04-05', 20200405, 20200405, '2020-04-16', 'CAD', 'RV', 1.0, 9837.01, 20200406.0, 'CA10', 2960625439.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 7952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930701313.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 51719.62, 20200326.0, 'NAH4', 1930701313.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 7953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930690884.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 7958.65, 20200325.0, 'NAA8', 1930690884.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930837845.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 20177.78, 20200429.0, 'NAC6', 1930837845.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 7955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930794119.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 21404.91, 20200416.0, 'NAH4', 1930794119.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 7956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930815411.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 116164.4, 20200422.0, 'NAU5', 1930815411.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930780237.0, '2020-04-11', 20200413, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 2008.45, 20200411.0, 'NAA8', 1930780237.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930655109.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21271.34, 20200316.0, 'NAH4', 1930655109.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER foundation', 2020.0, 1930594009.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 59836.78, 20200302.0, 'NAA8', 1930594009.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 7960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930849049.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 20498.57, 20200502.0, 'NAH4', 1930849049.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 7961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC trust', 2020.0, 1930773740.0, '2020-04-14', 20200410, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 8963.43, 20200414.0, 'NAA8', 1930773740.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 7962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930890815.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 35888.78, 20200512.0, 'NAH4', 1930890815.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 7963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corp', 2020.0, 1930616965.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 2988.55, 20200301.0, 'NAM4', 1930616965.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE in', 2020.0, 1930877235.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 50128.61, 20200507.0, 'NAA8', 1930877235.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 7965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930723924.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 2974.54, 20200331.0, 'NAU5', 1930723924.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930827347.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 8587.28, 20200426.0, 'NAH4', 1930827347.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 7967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930788660.0, '2020-04-03', 20200415, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 1257.85, 20200403.0, 'NAA8', 1930788660.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930715996.0, '2020-04-04', 20200330, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 2318.76, 20200404.0, 'NAA8', 1930715996.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 7969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930665161.0, '2020-03-20', 20200319, 20200320, '2020-04-23', 'USD', 'RV', 1.0, 3298.22, 20200320.0, 'NAAW', 1930665161.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 7970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200785971, 'SYSCO corp', 2020.0, 1930675959.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 9069.45, 20200320.0, 'NAA8', 1930675959.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930739581.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 22941.73, 20200403.0, 'NAU5', 1930739581.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 7972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100050364, 'SING trust', 2020.0, 1930804744.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 22707.2, 20200421.0, 'NAA8', 1930804744.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 7973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA trust', 2020.0, 1930690509.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 4419.77, 20200316.0, 'NAM4', 1930690509.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930664442.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 21413.58, 20200318.0, 'NAU5', 1930664442.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 7975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI us', 2020.0, 1930579093.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 3732.99, 20200227.0, 'NAA8', 1930579093.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 7976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930690840.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1322.22, 20200324.0, 'NAH4', 1930690840.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 7977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR systems', 2020.0, 1930659608.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 20511.79, 20200317.0, 'NAA8', 1930659608.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 7978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG corp', 2020.0, 1930794348.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 13600.21, 20200416.0, 'NAA8', 1930794348.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 7979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930713525.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 6409.36, 20200328.0, 'NAH4', 1930713525.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC llc', 2020.0, 1930820894.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 20317.97, 20200423.0, 'NAA8', 1930820894.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 7981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930709074.0, '2020-03-29', 20200330, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 32318.02, 20200329.0, 'NAH4', 1930709074.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960624860.0, '2020-03-30', 20200330, 20200330, '2020-04-18', 'CAD', 'RV', 1.0, 16058.23, 20200408.0, 'CA10', 2960624860.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 7983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA ', 2020.0, 1930650852.0, '2020-03-13', 20200314, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 21155.34, 20200313.0, 'NAA8', 1930650852.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 7984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930658110.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 1898.2, 20200316.0, 'NAH4', 1930658110.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 7985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930683506.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 69056.43, 20200321.0, 'NAA8', 1930683506.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 7986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930653843.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 2115.28, 20200316.0, 'NAA8', 1930653843.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 7987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930714597.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 3376.64, 20200327.0, 'NAA8', 1930714597.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930674850.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 10934.41, 20200320.0, 'NAH4', 1930674850.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 7989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930831901.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 29457.7, 20200428.0, 'NAH4', 1930831901.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 7990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930715410.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 30506.24, 20200329.0, 'NAH4', 1930715410.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 7991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930764490.0, '2020-04-10', 20200408, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 13788.38, 20200410.0, 'NAH4', 1930764490.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 7992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930692446.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 41410.73, 20200325.0, 'NAA8', 1930692446.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 7993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER co', 2020.0, 1930770870.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 17783.97, 20200411.0, 'NAA8', 1930770870.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 7994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200752302, 'KROGER trust', 2020.0, 1930684111.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 20213.75, 20200323.0, 'NAA8', 1930684111.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 7995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200790012, 'DOERLE associates', 2020.0, 1930855575.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 20989.13, 20200506.0, 'NAA8', 1930855575.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 7996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930686105.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 32466.61, 20200322.0, 'NAH4', 1930686105.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 7997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW foundation', 2020.0, 1930774028.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 33917.14, 20200410.0, 'NAA8', 1930774028.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 7998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930803694.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 4224.98, 20200423.0, 'NAH4', 1930803694.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 7999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930581281.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 13638.62, 20200301.0, 'NAH4', 1930581281.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE foundation', 2020.0, 1930719303.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 44019.48, 20200330.0, 'NAA8', 1930719303.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 8001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930669303.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 1322.24, 20200319.0, 'NAH4', 1930669303.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930784765.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 959.98, 20200415.0, 'NAH4', 1930784765.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930620569.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 15728.12, 20200309.0, 'NAAX', 1930620569.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930880342.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 1098.84, 20200510.0, 'NAH4', 1930880342.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 8005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930593088.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 28366.02, 20200303.0, 'NAA8', 1930593088.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corp', 2020.0, 1930837795.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 29785.65, 20200429.0, 'NAA8', 1930837795.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200725421, 'BEN foundation', 2020.0, 1930858384.0, '2020-05-08', 20200505, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 29860.41, 20200508.0, 'NAA8', 1930858384.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC us', 2020.0, 1930716765.0, '2020-03-25', 20200328, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 29770.31, 20200325.0, 'NAA8', 1930716765.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO in', 2020.0, 2960626271.0, '2020-04-05', 20200405, 20200405, '2020-04-17', 'CAD', 'RV', 1.0, 75417.07, 20200407.0, 'CA10', 2960626271.0, 1, '2020-04-21', '0-15 days' ); /* INSERT QUERY NO: 8010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930729999.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 24834.9, 20200401.0, 'NAH4', 1930729999.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930709578.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 18118.48, 20200327.0, 'NAA8', 1930709578.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK us', 2020.0, 1930834571.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 104636.88, 20200429.0, 'NAA8', 1930834571.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S foundation', 2020.0, 1930714034.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 43927.84, 20200329.0, 'NAA8', 1930714034.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA co', 2020.0, 1930804374.0, '2020-04-21', 20200421, 20200421, '2020-03-23', 'USD', 'RV', 1.0, 10089.17, 20200316.0, 'NAM1', 1930804374.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930821608.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 2277.6, 20200424.0, 'NAA8', 1930821608.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930779409.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 32685.98, 20200413.0, 'NAH4', 1930779409.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 8017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT associates', 2020.0, 1930800208.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 124041.53, 20200418.0, 'NAA8', 1930800208.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930837539.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 4499.75, 20200429.0, 'NAA8', 1930837539.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200754118, 'ARMY us', 2020.0, 1930855716.0, '2020-05-04', 20200504, 20200504, '2020-03-16', 'USD', 'RV', 1.0, 76.46, 20200301.0, 'NAM3', 1930855716.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930846997.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 13624.3, 20200504.0, 'NAA8', 1930846997.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 8021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930773528.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 33824.77, 20200411.0, 'NAH4', 1930773528.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930643202.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 56273.82, 20200313.0, 'NAH4', 1930643202.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930673999.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 40330.72, 20200320.0, 'NAH4', 1930673999.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR corporation', 2020.0, 1930843958.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 5862.13, 20200430.0, 'NAA8', 1930843958.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E co', 2020.0, 1930706396.0, '2020-03-31', 20200330, 20200331, '2020-04-20', 'USD', 'RV', 1.0, 1025.64, 20200331.0, 'NAD1', 1930706396.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930884973.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 1518.56, 20200511.0, 'NAH4', 1930884973.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 8027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER associates', 2020.0, 1930777719.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 109379.75, 20200413.0, 'NAA8', 1930777719.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 8028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE corp', 2020.0, 1930768022.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 34365.7, 20200408.0, 'NAA8', 1930768022.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL foundation', 2020.0, 1930691733.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 94056.43, 20200325.0, 'NAA8', 1930691733.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930710836.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 661.11, 20200328.0, 'NAH4', 1930710836.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO corporation', 2020.0, 1930733000.0, '2020-04-08', 20200402, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 27720.72, 20200408.0, 'NAA8', 1930733000.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M associates', 2020.0, 2960628607.0, '2020-04-14', 20200414, 20200414, '2020-04-25', 'CAD', 'RV', 1.0, 85532.34, 20200415.0, 'CA10', 2960628607.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 8033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200704045, 'RA foundation', 2020.0, 1930847285.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 12048.67, 20200501.0, 'NAA8', 1930847285.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200679800, 'CAMP trust', 2020.0, 1930744406.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 49379.0, 20200403.0, 'NAA8', 1930744406.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930583799.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 4304.81, 20200229.0, 'NAH4', 1930583799.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR corp', 2020.0, 1930857980.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 120987.86, 20200504.0, 'NAA8', 1930857980.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 8037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO systems', 2020.0, 2960634219.0, '2020-05-11', 20200511, 20200511, '2020-05-22', 'CAD', 'RV', 1.0, 42598.57, 20200512.0, 'CA10', 2960634219.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 8038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930798375.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 76228.91, 20200420.0, 'NAAX', 1930798375.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930717791.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 94586.39, 20200330.0, 'NAH4', 1930717791.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930623098.0, '2020-03-08', 20200309, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 8144.7, 20200308.0, 'NAC6', 1930623098.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793122, 'PIGGLY foundation', 2020.0, 1930604644.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 59800.22, 20200305.0, 'NAA8', 1930604644.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930817610.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 502.33, 20200423.0, 'NAA8', 1930817610.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930774984.0, '2020-04-14', 20200411, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 13729.48, 20200414.0, 'NAH4', 1930774984.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930730855.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 42258.06, 20200402.0, 'NAA8', 1930730855.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER co', 2020.0, 1930726521.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 41575.78, 20200402.0, 'NAA8', 1930726521.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930831184.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 321.53, 20200428.0, 'NAA8', 1930831184.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG corp', 2020.0, 1930859611.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 22017.02, 20200505.0, 'NAA8', 1930859611.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 8048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200770677, 'KRAS llc', 2020.0, 1930730912.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 40469.12, 20200403.0, 'NAA8', 1930730912.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 8049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT trust', 2020.0, 1930840823.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 25386.7, 20200429.0, 'NAU5', 1930840823.0, 1, '2020-05-16', '0-15 days' ); /* INSERT QUERY NO: 8050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO co', 2020.0, 2960625960.0, '2020-04-02', 20200402, 20200402, '2020-04-12', 'CAD', 'RV', 1.0, 73726.94, 20200402.0, 'CA10', 2960625960.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 8051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100015557, 'BI foundation', 2020.0, 1930661358.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 20440.9, 20200317.0, 'NAA8', 1930661358.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC co', 2020.0, 1930673580.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 26673.39, 20200319.0, 'NAA8', 1930673580.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 8053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930659666.0, '2020-03-16', 20200316, 20200316, '2020-04-19', 'USD', 'RV', 1.0, 1371.38, 20200316.0, 'NAAW', 1930659666.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930789204.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 5573.67, 20200416.0, 'NAC6', 1930789204.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930604698.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 12603.48, 20200305.0, 'NAH4', 1930604698.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930774815.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 2668.28, 20200411.0, 'NAH4', 1930774815.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930690381.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 39413.39, 20200325.0, 'NAH4', 1930690381.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960624835.0, '2020-03-28', 20200328, 20200328, '2020-04-07', 'CAD', 'RV', 1.0, 160073.65, 20200328.0, 'CA10', 2960624835.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 8059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930577165.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 25418.01, 20200228.0, 'NAC6', 1930577165.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 8060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930785839.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 7397.04, 20200416.0, 'NAA8', 1930785839.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 8061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930596074.0, '2020-03-04', 20200304, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 7763.64, 20200304.0, 'NAGD', 1930596074.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO corp', 2020.0, 2960620128.0, '2020-03-11', 20200311, 20200311, '2020-03-23', 'CAD', 'RV', 1.0, 1506.48, 20200313.0, 'CA10', 2960620128.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 8063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D corporation', 2020.0, 1930720109.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 18591.15, 20200330.0, 'NAA8', 1930720109.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930761078.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 7067.08, 20200409.0, 'NAH4', 1930761078.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930652945.0, '2020-03-20', 20200314, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 2214.3, 20200320.0, 'NAH4', 1930652945.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200708411, 'SHAM in', 2020.0, 1930586302.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 22987.48, 20200302.0, 'NAA8', 1930586302.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930751788.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 11257.66, 20200405.0, 'NAA8', 1930751788.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930758975.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 50414.0, 20200407.0, 'NAH4', 1930758975.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930797996.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 66.37, 20200418.0, 'NAA8', 1930797996.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT trust', 2020.0, 1930614081.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 135406.45, 20200307.0, 'NAA8', 1930614081.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 8071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930832241.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 17456.82, 20200428.0, 'NAH4', 1930832241.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 8072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036066, 'GROC us', 2020.0, 1930653407.0, '2020-03-19', 20200314, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 2712.54, 20200319.0, 'NAA8', 1930653407.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200705089, 'JETR corp', 2020.0, 1930871599.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 17657.94, 20200507.0, 'NAA8', 1930871599.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930617588.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 1329.23, 20200307.0, 'NAH4', 1930617588.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930718330.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 1898.2, 20200330.0, 'NAH4', 1930718330.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930716022.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 661.11, 20200329.0, 'NAH4', 1930716022.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930778080.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 6565.72, 20200413.0, 'NAH4', 1930778080.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 8078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS corp', 2020.0, 1930686585.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 2801.38, 20200323.0, 'NAA8', 1930686585.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930726218.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 9708.0, 20200401.0, 'NAH4', 1930726218.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE trust', 2020.0, 1930782193.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 55295.4, 20200415.0, 'NAA8', 1930782193.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 8081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930745083.0, '2020-04-06', 20200403, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 67420.34, 20200406.0, 'NAH4', 1930745083.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100017600, 'ZIYAD foundation', 2020.0, 1991841714.0, '2020-04-02', 20200403, 20200402, '2020-05-19', 'USD', 'RV', 1.0, 115967.28, 20200219.0, 'NAUY', 1991841714.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 8083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT in', 2020.0, 1930580581.0, '2020-02-29', 20200228, 20200229, '2020-04-04', 'USD', 'RV', 1.0, 29701.14, 20200229.0, 'NAG2', 1930580581.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930635482.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 82828.96, 20200313.0, 'NAH4', 1930635482.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930610410.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 18878.02, 20200306.0, 'NAH4', 1930610410.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI foundation', 2020.0, 1930728936.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 64513.69, 20200402.0, 'NAA8', 1930728936.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930745536.0, '2020-04-06', 20200403, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 669.34, 20200406.0, 'NAH4', 1930745536.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA systems', 2020.0, 1930607548.0, '2020-03-05', 20200305, 20200305, '2020-03-25', 'USD', 'RV', 1.0, 754.44, 20200305.0, 'NAD1', 1930607548.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200936373, 'SUPE ', 2020.0, 1930635784.0, '2020-03-13', 20200311, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 1430.87, 20200313.0, 'NAGD', 1930635784.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104440, 'SO systems', 2020.0, 2960620417.0, '2020-03-12', 20200312, 20200312, '2020-03-26', 'CAD', 'RV', 1.0, 61690.42, 20200316.0, 'CA10', 2960620417.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 8091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930855455.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 6483.6, 20200504.0, 'NAA8', 1930855455.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930611983.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 14536.01, 20200308.0, 'NAH4', 1930611983.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930859189.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 21400.66, 20200505.0, 'NAH4', 1930859189.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930796958.0, '2020-04-16', 20200417, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 2617.28, 20200416.0, 'NAH4', 1930796958.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781831, 'RITE in', 2020.0, 1930816161.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 60721.09, 20200423.0, 'NAA8', 1930816161.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930576397.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 17674.02, 20200228.0, 'NAC6', 1930576397.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 8097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930663056.0, '2020-03-20', 20200317, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 3427.2, 20200320.0, 'NAA8', 1930663056.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD ', 2020.0, 1930683668.0, '2020-03-20', 20200321, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 989.47, 20200320.0, 'NAA8', 1930683668.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930612515.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 15987.21, 20200306.0, 'NAH4', 1930612515.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930732330.0, '2020-03-30', 20200402, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 64941.4, 20200330.0, 'NAA8', 1930732330.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA ', 2020.0, 1930759812.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 10479.94, 20200407.0, 'NAA8', 1930759812.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S in', 2020.0, 1930653054.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 37549.03, 20200317.0, 'NAA8', 1930653054.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 8103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930778884.0, '2020-04-14', 20200412, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 13192.56, 20200414.0, 'NAH4', 1930778884.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930715351.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 53336.38, 20200330.0, 'NAH4', 1930715351.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO us', 2020.0, 2960625843.0, '2020-04-03', 20200403, 20200403, '2020-04-15', 'CAD', 'RV', 1.0, 71384.15, 20200405.0, 'CA10', 2960625843.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 8106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930860712.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 36962.42, 20200506.0, 'NAH4', 1930860712.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930626184.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 23362.33, 20200310.0, 'NAA8', 1930626184.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930715954.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 15847.63, 20200330.0, 'NAH4', 1930715954.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930647675.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 496.23, 20200313.0, 'NAH4', 1930647675.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930729845.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 13740.02, 20200401.0, 'NAC6', 1930729845.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930586445.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 969.68, 20200304.0, 'NAH4', 1930586445.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 8112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769369, 'DI llc', 2020.0, 1930723619.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 118924.91, 20200331.0, 'NAA8', 1930723619.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S llc', 2020.0, 1930827549.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 122189.88, 20200427.0, 'NAA8', 1930827549.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 8114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corp', 2020.0, 1930645111.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 20229.58, 20200313.0, 'NAA8', 1930645111.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA systems', 2020.0, 1930817280.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 3063.48, 20200416.0, 'NAM4', 1930817280.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930613842.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 7846.24, 20200307.0, 'NAH4', 1930613842.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930798929.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 47979.37, 20200417.0, 'NAA8', 1930798929.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 8118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930589360.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 500.65, 20200302.0, 'NAA8', 1930589360.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S systems', 2020.0, 1930666865.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 919.1, 20200319.0, 'NAA8', 1930666865.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930708785.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 15246.81, 20200327.0, 'NAA8', 1930708785.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN foundation', 2020.0, 1930675154.0, '2020-03-24', 20200320, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 15148.3, 20200324.0, 'NAA8', 1930675154.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO systems', 2020.0, 1930681765.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 3951.0, 20200321.0, 'NAA8', 1930681765.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100056666, 'KGL FOO corporation', 2020.0, 1930804111.0, '2020-04-22', 20200420, 20200422, '2020-04-22', 'USD', 'RV', 1.0, 4112.66, 20200422.0, 'NAB1', 1930804111.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930663835.0, '2020-03-18', 20200317, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 8231.52, 20200318.0, 'NAGD', 1930663835.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930797062.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 5932.07, 20200420.0, 'NAH4', 1930797062.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930611928.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 66640.81, 20200308.0, 'NAH4', 1930611928.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930794303.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 27810.76, 20200416.0, 'NAH4', 1930794303.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER corp', 2020.0, 1930765310.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 55029.32, 20200409.0, 'NAA8', 1930765310.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930752451.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 471.56, 20200405.0, 'NAH4', 1930752451.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930593664.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 51643.57, 20200305.0, 'NAH4', 1930593664.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 8131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO corp', 2020.0, 1930796844.0, '2020-04-23', 20200416, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 9483.08, 20200423.0, 'NAA8', 1930796844.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930780713.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 18345.48, 20200415.0, 'NAH4', 1930780713.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930716262.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 568.59, 20200329.0, 'NAH4', 1930716262.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC associates', 2020.0, 1930682744.0, '2020-03-21', 20200321, 20200321, '2020-04-08', 'USD', 'RV', 1.0, 9794.18, 20200316.0, 'NAM4', 1930682744.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER us', 2020.0, 1930717648.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 14259.24, 20200330.0, 'NAA8', 1930717648.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930718375.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 383.27, 20200330.0, 'NAH4', 1930718375.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930810181.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 2758.58, 20200422.0, 'NAH4', 1930810181.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930799143.0, '2020-04-22', 20200418, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 1569.6, 20200422.0, 'NAA8', 1930799143.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT ', 2020.0, 1930637792.0, '2020-03-12', 20200311, 20200312, '2020-04-16', 'USD', 'RV', 1.0, 19954.3, 20200312.0, 'NAG2', 1930637792.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930675963.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 50141.95, 20200322.0, 'NAH4', 1930675963.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER ', 2020.0, 1930701203.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 43905.39, 20200325.0, 'NAA8', 1930701203.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT in', 2020.0, 1930693910.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 37820.52, 20200326.0, 'NAA8', 1930693910.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930673631.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 47529.79, 20200321.0, 'NAH4', 1930673631.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930606236.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 53761.96, 20200305.0, 'NAA8', 1930606236.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 8145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL systems', 2020.0, 1930670964.0, '2020-03-26', 20200319, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 10591.46, 20200326.0, 'NAA8', 1930670964.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930684462.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 15964.78, 20200323.0, 'NAH4', 1930684462.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT ', 2020.0, 1930847756.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 10154.93, 20200501.0, 'NAU5', 1930847756.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 8148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930699720.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 30879.78, 20200326.0, 'NAH4', 1930699720.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930767449.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 13606.75, 20200409.0, 'NAH4', 1930767449.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE corporation', 2020.0, 2960618914.0, '2020-03-05', 20200305, 20200305, '2020-03-16', 'CAD', 'RV', 1.0, 9533.11, 20200306.0, 'CA10', 2960618914.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 8151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200331749, 'SYSC corporation', 2020.0, 1930732466.0, '2020-04-07', 20200402, 20200407, '2020-04-27', 'USD', 'RV', 1.0, 14793.02, 20200407.0, 'NAD1', 1930732466.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU co', 2020.0, 1930730614.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 47726.71, 20200401.0, 'NAA8', 1930730614.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930685576.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 19135.49, 20200324.0, 'NAC6', 1930685576.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930723671.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 49508.0, 20200401.0, 'NAH4', 1930723671.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG in', 2020.0, 1930796517.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 41520.48, 20200417.0, 'NAA8', 1930796517.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930854537.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 458.11, 20200504.0, 'NAH4', 1930854537.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU in', 2020.0, 1930800476.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 43510.32, 20200420.0, 'NAC6', 1930800476.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043936, 'PAPA JO llc', 2020.0, 1930819510.0, '2020-04-24', 20200423, 20200424, '2020-05-04', 'USD', 'RV', 1.0, 18135.88, 20200424.0, 'NA10', 1930819510.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 8159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR foundation', 2020.0, 1930789956.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 81878.38, 20200415.0, 'NAA8', 1930789956.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960625275.0, '2020-04-01', 20200401, 20200401, '2020-04-11', 'CAD', 'RV', 1.0, 90624.13, 20200401.0, 'CA10', 2960625275.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 8161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930635304.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 41912.81, 20200311.0, 'NAH4', 1930635304.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST systems', 2020.0, 1930879149.0, '2020-05-07', 20200508, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 2667.71, 20200507.0, 'NAAX', 1930879149.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 8163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200063296, 'SUIS co', 2020.0, 1930819539.0, '2020-04-23', 20200423, 20200423, '2020-05-23', 'USD', 'RV', 1.0, 398.12, 20200423.0, 'NAD5', 1930819539.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930620504.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 14276.1, 20200308.0, 'NAH4', 1930620504.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930808714.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 1329.23, 20200423.0, 'NAH4', 1930808714.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 8166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corp', 2020.0, 1930614551.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 53290.24, 20200306.0, 'NAA8', 1930614551.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE foundation', 2020.0, 1930852513.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 68331.51, 20200502.0, 'NAA8', 1930852513.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930824688.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 42067.81, 20200427.0, 'NAH4', 1930824688.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930714201.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 3227.43, 20200328.0, 'NAH4', 1930714201.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200346918, 'CULINAR corp', 2020.0, 1930796385.0, '2020-04-16', 20200416, 20200416, '2020-04-26', 'USD', 'RV', 1.0, 51571.08, 20200416.0, 'NA10', 1930796385.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE corp', 2020.0, 2960618634.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'CAD', 'RV', 1.0, 83831.4, 20200312.0, 'CA10', 2960618634.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 8172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE in', 2020.0, 1930670270.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 14936.59, 20200321.0, 'NAA8', 1930670270.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930583959.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 6532.6, 20200301.0, 'NAH4', 1930583959.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA systems', 2020.0, 1930804566.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 14001.07, 20200421.0, 'NAA8', 1930804566.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200729290, 'KROGER us', 2020.0, 1930638436.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 16879.5, 20200312.0, 'NAA8', 1930638436.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930708824.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 17033.43, 20200328.0, 'NAA8', 1930708824.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930758512.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 15209.72, 20200407.0, 'NAH4', 1930758512.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930891806.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 56291.15, 20200512.0, 'NAH4', 1930891806.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 8179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH corp', 2020.0, 1930834508.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 47093.5, 20200429.0, 'NAA8', 1930834508.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 8180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC llc', 2020.0, 1930773138.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 6674.27, 20200401.0, 'NAM4', 1930773138.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930666066.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 47269.22, 20200319.0, 'NAH4', 1930666066.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR corp', 2020.0, 1930693211.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 62181.65, 20200326.0, 'NAA8', 1930693211.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA llc', 2020.0, 1930789477.0, '2020-04-16', 20200416, 20200416, '2020-04-24', 'USD', 'RV', 1.0, 254.28, 20200401.0, 'NAM4', 1930789477.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200983712, 'FAMOS llc', 2020.0, 1930787571.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 74391.77, 20200416.0, 'NAA8', 1930787571.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930717099.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 29475.45, 20200330.0, 'NAH4', 1930717099.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930772748.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 4689.86, 20200401.0, 'NAM4', 1930772748.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930687145.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 35950.59, 20200324.0, 'NAH4', 1930687145.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN corp', 2020.0, 1930693154.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 16221.73, 20200324.0, 'NAA8', 1930693154.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930773349.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 32686.98, 20200412.0, 'NAH4', 1930773349.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721222, 'GO ', 2020.0, 1930796684.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 60492.26, 20200418.0, 'NAA8', 1930796684.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930732631.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 25089.25, 20200403.0, 'NAH4', 1930732631.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105678, 'SAPUTO corp', 2020.0, 2960633442.0, '2020-05-08', 20200508, 20200508, '2020-05-22', 'CAD', 'RV', 1.0, 9336.6, 20200512.0, 'CA10', 2960633442.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 8193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER foundation', 2020.0, 1930612028.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 113198.47, 20200306.0, 'NAA8', 1930612028.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corporation', 2020.0, 1930893514.0, '2020-05-12', 20200512, 20200512, '2020-05-11', 'USD', 'RV', 1.0, 43371.8, 20200501.0, 'NAM2', 1930893514.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE ', 2020.0, 1930799207.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 88033.41, 20200417.0, 'NAA8', 1930799207.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930784996.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 36534.97, 20200417.0, 'NAH4', 1930784996.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930708347.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 38135.13, 20200327.0, 'NAH4', 1930708347.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 8198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA systems', 2020.0, 1930599916.0, '2020-03-04', 20200304, 20200304, '2020-03-08', 'USD', 'RV', 1.0, 18062.95, 20200301.0, 'NAM1', 1930599916.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 8199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS corporation', 2020.0, 1930671033.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 6405.59, 20200318.0, 'NAA8', 1930671033.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930686813.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 9525.6, 20200323.0, 'NAA8', 1930686813.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930778280.0, '2020-04-16', 20200411, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 37565.84, 20200416.0, 'NAAX', 1930778280.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930693366.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 2830.69, 20200330.0, 'NAA8', 1930693366.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100008001, 'ANHA llc', 2020.0, 1930639613.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 14858.76, 20200313.0, 'NAA8', 1930639613.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930704631.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 37492.57, 20200326.0, 'NAH4', 1930704631.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930849711.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 6485.26, 20200502.0, 'NAH4', 1930849711.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930746179.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 36246.34, 20200404.0, 'NAH4', 1930746179.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930783272.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 8746.78, 20200415.0, 'NAH4', 1930783272.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE corp', 2020.0, 1930768375.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 9799.06, 20200409.0, 'NAA8', 1930768375.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO systems', 2020.0, 2960626577.0, '2020-04-13', 20200413, 20200413, '2020-05-01', 'CAD', 'RV', 1.0, 20974.26, 20200421.0, 'CA10', 2960626577.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 8210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200955827, 'KE co', 2020.0, 1930578989.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 33654.32, 20200229.0, 'NAA8', 1930578989.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930670965.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 50701.61, 20200319.0, 'NAH4', 1930670965.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930716675.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 10432.65, 20200329.0, 'NAH4', 1930716675.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930652830.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 21195.68, 20200316.0, 'NAH4', 1930652830.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930679350.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 194762.3, 20200322.0, 'NAA8', 1930679350.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930594111.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 55327.79, 20200303.0, 'NAH4', 1930594111.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 8216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930714596.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 17929.08, 20200327.0, 'NAA8', 1930714596.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930749682.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 1991.84, 20200406.0, 'NAH4', 1930749682.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100018142, 'MINNESO systems', 2020.0, 1930725195.0, '2020-03-31', 20200331, 20200331, '2020-04-10', 'USD', 'RV', 1.0, 36057.6, 20200331.0, 'NA10', 1930725195.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930739126.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 27534.2, 20200405.0, 'NAH4', 1930739126.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930861131.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 1322.22, 20200506.0, 'NAH4', 1930861131.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930715565.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 96556.71, 20200329.0, 'NAA8', 1930715565.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930661218.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 1898.9, 20200318.0, 'NAH4', 1930661218.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104285, 'BUY- systems', 2020.0, 2960620025.0, '2020-03-11', 20200311, 20200311, '2020-03-29', 'CAD', 'RV', 1.0, 94271.37, 20200319.0, 'CA10', 2960620025.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 8224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930675215.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 10162.06, 20200321.0, 'NAAX', 1930675215.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930654211.0, '2020-03-18', 20200315, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 36843.43, 20200318.0, 'NAAX', 1930654211.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930614540.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 1299.25, 20200307.0, 'NAH4', 1930614540.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930668157.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 12456.78, 20200320.0, 'NAH4', 1930668157.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930705965.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 3227.43, 20200327.0, 'NAH4', 1930705965.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 8229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930585220.0, '2020-03-03', 20200301, 20200303, '2020-05-07', 'USD', 'RV', 1.0, 2174.76, 20200303.0, 'NAGD', 1930585220.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930853996.0, '2020-05-02', 20200503, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 11113.63, 20200502.0, 'NAA8', 1930853996.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930833736.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 46.27, 20200429.0, 'NAA8', 1930833736.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930716864.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 38750.98, 20200329.0, 'NAH4', 1930716864.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930762759.0, '2020-04-07', 20200408, 20200407, '2020-06-11', 'USD', 'RV', 1.0, 8006.68, 20200407.0, 'NAGD', 1930762759.0, 1, '2020-06-09', 'early' ); /* INSERT QUERY NO: 8234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & systems', 2020.0, 1930810188.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 36761.09, 20200422.0, 'NAA8', 1930810188.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE in', 2020.0, 1930726946.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 79266.73, 20200401.0, 'NAA8', 1930726946.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930580061.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 171.92, 20200302.0, 'NAA8', 1930580061.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930832195.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 2926.86, 20200429.0, 'NAH4', 1930832195.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930758947.0, '2020-04-06', 20200407, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 29693.84, 20200406.0, 'NAA8', 1930758947.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 8239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930585641.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 27.6, 20200302.0, 'NAA8', 1930585641.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930861872.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 36161.5, 20200507.0, 'NAH4', 1930861872.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 8241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930858035.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 417.96, 20200501.0, 'NAM4', 1930858035.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M co', 2020.0, 2960619753.0, '2020-03-12', 20200313, 20200312, '2020-03-22', 'CAD', 'RV', 1.0, 65049.69, 20200312.0, 'CA10', 2960619753.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 8243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930653276.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 32422.45, 20200317.0, 'NAH4', 1930653276.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO ', 2020.0, 2960618760.0, '2020-03-05', 20200305, 20200305, '2020-03-15', 'CAD', 'RV', 1.0, 26719.54, 20200305.0, 'CA10', 2960618760.0, 1, '2020-03-20', '0-15 days' ); /* INSERT QUERY NO: 8245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA associates', 2020.0, 1930645862.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 173.4, 20200312.0, 'NAA8', 1930645862.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930627414.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 27174.02, 20200309.0, 'NAA8', 1930627414.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH llc', 2020.0, 1930583660.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 50934.2, 20200302.0, 'NAC6', 1930583660.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930779280.0, '2020-04-13', 20200413, 20200413, '2020-06-17', 'USD', 'RV', 1.0, 1411.2, 20200413.0, 'NAGD', 1930779280.0, 1, '2020-06-13', 'early' ); /* INSERT QUERY NO: 8249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930779274.0, '2020-04-15', 20200413, 20200415, '2020-06-19', 'USD', 'RV', 1.0, 1176.0, 20200415.0, 'NAGD', 1930779274.0, 1, '2020-06-15', 'early' ); /* INSERT QUERY NO: 8250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR us', 2020.0, 1930834091.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 98133.51, 20200428.0, 'NAA8', 1930834091.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930743934.0, '2020-04-08', 20200403, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 554.41, 20200408.0, 'NAA8', 1930743934.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO llc', 2020.0, 2960624089.0, '2020-03-30', 20200330, 20200330, '2020-04-15', 'CAD', 'RV', 1.0, 54621.18, 20200405.0, 'CA10', 2960624089.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 8253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE co', 2020.0, 2960628067.0, '2020-04-13', 20200413, 20200413, '2020-04-25', 'CAD', 'RV', 1.0, 125766.66, 20200415.0, 'CA10', 2960628067.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 8254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930773133.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 9942.28, 20200401.0, 'NAM4', 1930773133.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA in', 2020.0, 1930845292.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 14350.9, 20200502.0, 'NAH4', 1930845292.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 8256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S corporation', 2020.0, 1930711297.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 124832.7, 20200328.0, 'NAA8', 1930711297.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930669333.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 6640.59, 20200319.0, 'NAH4', 1930669333.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930699709.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 20380.79, 20200326.0, 'NAH4', 1930699709.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM us', 2020.0, 1930703375.0, '2020-04-01', 20200330, 20200401, '2020-06-05', 'USD', 'RV', 1.0, 1411.2, 20200401.0, 'NAGD', 1930703375.0, 1, '2020-06-02', 'early' ); /* INSERT QUERY NO: 8260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930847427.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 16583.07, 20200502.0, 'NAH4', 1930847427.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930748519.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 3227.43, 20200404.0, 'NAH4', 1930748519.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930879821.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 5363.26, 20200509.0, 'NAH4', 1930879821.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 8263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA foundation', 2020.0, 1930745786.0, '2020-04-04', 20200404, 20200404, '2020-04-24', 'USD', 'RV', 1.0, 2317.47, 20200401.0, 'NAM4', 1930745786.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER llc', 2020.0, 1930697881.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 46970.74, 20200325.0, 'NAA8', 1930697881.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930582767.0, '2020-02-29', 20200228, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 27208.17, 20200229.0, 'NAH4', 1930582767.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR ', 2020.0, 1930676452.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 60844.61, 20200321.0, 'NAA8', 1930676452.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930753728.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 30408.85, 20200407.0, 'NAH4', 1930753728.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 8268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930688074.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 841.43, 20200324.0, 'NAA8', 1930688074.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930775752.0, '2020-04-13', 20200411, 20200413, '2020-05-28', 'USD', 'RV', 1.0, 119214.03, 20200413.0, 'NAWP', 1930775752.0, 1, '2020-05-29', '0-15 days' ); /* INSERT QUERY NO: 8270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930581518.0, '2020-03-04', 20200229, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 130.32, 20200304.0, 'NAGD', 1930581518.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930778054.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 873.31, 20200411.0, 'NAA8', 1930778054.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 8272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930666354.0, '2020-03-19', 20200318, 20200319, '2020-05-03', 'USD', 'RV', 1.0, 122964.57, 20200319.0, 'NAWP', 1930666354.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 8273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F trust', 2020.0, 1930760147.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 3338.95, 20200407.0, 'NAA8', 1930760147.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930884311.0, '2020-05-11', 20200509, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 73325.79, 20200511.0, 'NAH4', 1930884311.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 8275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930786427.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 20874.91, 20200416.0, 'NAA8', 1930786427.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 8276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930686533.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 18345.29, 20200323.0, 'NAA8', 1930686533.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930737794.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 588.29, 20200403.0, 'NAA8', 1930737794.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930637245.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 661.11, 20200312.0, 'NAH4', 1930637245.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 8279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930757591.0, '2020-04-08', 20200407, 20200408, '2020-06-12', 'USD', 'RV', 1.0, 585.96, 20200408.0, 'NAGD', 1930757591.0, 1, '2020-06-08', 'early' ); /* INSERT QUERY NO: 8280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN llc', 2020.0, 1930716209.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 34475.6, 20200328.0, 'NAA8', 1930716209.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930821442.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 1717.25, 20200425.0, 'NAA8', 1930821442.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M us', 2020.0, 1930647477.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 98907.76, 20200313.0, 'NAA8', 1930647477.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W systems', 2020.0, 1930627403.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 56.82, 20200309.0, 'NAC6', 1930627403.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930610688.0, '2020-03-13', 20200307, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3882.09, 20200313.0, 'NAA8', 1930610688.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE in', 2020.0, 1930786477.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 89293.05, 20200414.0, 'NAA8', 1930786477.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 8286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930773611.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 11391.88, 20200410.0, 'NAH4', 1930773611.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 8287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930658255.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 1898.9, 20200319.0, 'NAH4', 1930658255.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930675091.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 9527.26, 20200319.0, 'NAU5', 1930675091.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200390794, 'CASH-W corp', 2020.0, 1930716570.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 36390.35, 20200328.0, 'NAA8', 1930716570.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT trust', 2020.0, 1930725306.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 17938.62, 20200331.0, 'NAU5', 1930725306.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER co', 2020.0, 1930681171.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 110807.05, 20200321.0, 'NAA8', 1930681171.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA in', 2020.0, 1930859313.0, '2020-05-08', 20200505, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 15800.65, 20200508.0, 'NAA8', 1930859313.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 8293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT systems', 2020.0, 1930776697.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 42967.49, 20200411.0, 'NAA8', 1930776697.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F llc', 2020.0, 1930658214.0, '2020-03-13', 20200316, 20200313, '2020-03-13', 'USD', 'RV', 1.0, 3698.2, 20200313.0, 'NAX2', 1930658214.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 8295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930884401.0, '2020-05-09', 20200509, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 23085.41, 20200509.0, 'NAH4', 1930884401.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 8296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030443, 'GLACIE associates', 2020.0, 1930815796.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 2975.93, 20200422.0, 'NAA8', 1930815796.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA in', 2020.0, 1930856256.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 71712.64, 20200504.0, 'NAH4', 1930856256.0, 1, '2020-05-20', '0-15 days' ); /* INSERT QUERY NO: 8298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA us', 2020.0, 1930671054.0, '2020-03-18', 20200319, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 66897.09, 20200318.0, 'NAA8', 1930671054.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930793422.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 11861.71, 20200417.0, 'NAAX', 1930793422.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930647428.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 14311.83, 20200313.0, 'NAH4', 1930647428.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corp', 2020.0, 1930753741.0, '2020-04-06', 20200406, 20200406, '2020-04-08', 'USD', 'RV', 1.0, 6306.28, 20200401.0, 'NAM1', 1930753741.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN foundation', 2020.0, 1930655621.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 15001.8, 20200318.0, 'NAA8', 1930655621.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO corp', 2020.0, 1930753113.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 68420.8, 20200408.0, 'NAA8', 1930753113.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930832171.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 98850.74, 20200428.0, 'NAU5', 1930832171.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960622475.0, '2020-03-21', 20200321, 20200321, '2020-04-03', 'CAD', 'RV', 1.0, 157978.56, 20200324.0, 'CA10', 2960622475.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 8306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930774240.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 317.3, 20200409.0, 'NAA8', 1930774240.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960630945.0, '2020-04-27', 20200428, 20200427, '2020-05-09', 'CAD', 'RV', 1.0, 10711.47, 20200429.0, 'CA10', 2960630945.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 8308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930706388.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 58683.71, 20200326.0, 'NAA8', 1930706388.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930645622.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 396.49, 20200313.0, 'NAA8', 1930645622.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA trust', 2020.0, 1930740053.0, '2020-04-03', 20200403, 20200403, '2020-04-24', 'USD', 'RV', 1.0, 417.96, 20200401.0, 'NAM4', 1930740053.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 8311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930796841.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 1727.84, 20200416.0, 'NAH4', 1930796841.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930731764.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 1841.67, 20200403.0, 'NAH4', 1930731764.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 8313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930811020.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 21359.27, 20200422.0, 'NAA8', 1930811020.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER in', 2020.0, 1930651677.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 22659.0, 20200314.0, 'NAA8', 1930651677.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930739015.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 35767.74, 20200403.0, 'NAH4', 1930739015.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 8316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930623420.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 62683.74, 20200308.0, 'NAU5', 1930623420.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT in', 2020.0, 1930583802.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 15006.73, 20200301.0, 'NAA8', 1930583802.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930801833.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 12353.5, 20200420.0, 'NAH4', 1930801833.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930704016.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 28444.54, 20200326.0, 'NAH4', 1930704016.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930629481.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 19485.05, 20200310.0, 'NAAX', 1930629481.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930877337.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 1322.22, 20200508.0, 'NAH4', 1930877337.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 8322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M ', 2020.0, 1930830822.0, '2020-04-28', 20200427, 20200428, '2020-05-15', 'USD', 'RV', 1.0, 4006.62, 20200515.0, 'NACH', 1930830822.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930732106.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 54952.9, 20200402.0, 'NAH4', 1930732106.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 8324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930886201.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 3687.93, 20200512.0, 'NAH4', 1930886201.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 8325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960625245.0, '2020-03-30', 20200330, 20200330, '2020-04-09', 'CAD', 'RV', 1.0, 57369.74, 20200330.0, 'CA10', 2960625245.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 8326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930584448.0, '2020-02-29', 20200229, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 25134.95, 20200229.0, 'NAGD', 1930584448.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200760666, 'KEHE us', 2020.0, 1930675562.0, '2020-03-27', 20200320, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 6436.52, 20200327.0, 'NAA8', 1930675562.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC llc', 2020.0, 1930810864.0, '2020-04-22', 20200422, 20200422, '2020-04-26', 'USD', 'RV', 1.0, 6492.3, 20200416.0, 'NAM2', 1930810864.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930686485.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 70713.56, 20200323.0, 'NAC6', 1930686485.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA corp', 2020.0, 1930649378.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 84979.86, 20200313.0, 'NAA8', 1930649378.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930774570.0, '2020-04-13', 20200410, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 373.72, 20200413.0, 'NAH4', 1930774570.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 8332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930646169.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 1233.88, 20200313.0, 'NAH4', 1930646169.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU in', 2020.0, 1930686194.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 18161.94, 20200322.0, 'NAA8', 1930686194.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA co', 2020.0, 1930806422.0, '2020-04-21', 20200421, 20200421, '2020-04-26', 'USD', 'RV', 1.0, 202.7, 20200416.0, 'NAM2', 1930806422.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930862181.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 40494.45, 20200506.0, 'NAH4', 1930862181.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ in', 2020.0, 1930854960.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 14867.75, 20200504.0, 'NAA8', 1930854960.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 8337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU corp', 2020.0, 1930828997.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 45940.91, 20200427.0, 'NAA8', 1930828997.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200727272, 'BROOKS ', 2020.0, 1930865680.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 42233.87, 20200506.0, 'NAA8', 1930865680.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M us', 2020.0, 1930669188.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 37220.79, 20200319.0, 'NAA8', 1930669188.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200847305, 'CUSTOM corp', 2020.0, 1930624889.0, '2020-03-11', 20200309, 20200311, '2020-03-21', 'USD', 'RV', 1.0, 60531.3, 20200311.0, 'NA10', 1930624889.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930614590.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 723.32, 20200308.0, 'NAH4', 1930614590.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930665953.0, '2020-03-17', 20200318, 20200317, '2020-05-21', 'USD', 'RV', 1.0, 5821.68, 20200317.0, 'NAGD', 1930665953.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 8343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930577858.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 3560.49, 20200228.0, 'NAH4', 1930577858.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930600130.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 311.0, 20200301.0, 'NAM2', 1930600130.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 8345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772595, 'SAFEW systems', 2020.0, 1930709437.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 161208.22, 20200326.0, 'NAA8', 1930709437.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930689010.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 26676.39, 20200325.0, 'NAH4', 1930689010.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT us', 2020.0, 1930730326.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 54244.92, 20200402.0, 'NAA8', 1930730326.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB in', 2020.0, 2960617545.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'CAD', 'RV', 1.0, 72779.83, 20200303.0, 'CA10', 2960617545.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 8349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930606232.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 37216.72, 20200306.0, 'NAH4', 1930606232.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930672801.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 13755.04, 20200320.0, 'NAH4', 1930672801.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL systems', 2020.0, 1930671159.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 21300.0, 20200320.0, 'NAA8', 1930671159.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN ', 2020.0, 1930681115.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 14793.38, 20200320.0, 'NAA8', 1930681115.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778998, 'CE llc', 2020.0, 1930656018.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 57412.47, 20200318.0, 'NAA8', 1930656018.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 8354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930828634.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 10444.3, 20200427.0, 'NAC6', 1930828634.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930812554.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 143738.28, 20200422.0, 'NAA8', 1930812554.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930825569.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 10425.09, 20200425.0, 'NAH4', 1930825569.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930676215.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 19366.59, 20200321.0, 'NAH4', 1930676215.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA in', 2020.0, 1930585396.0, '2020-03-02', 20200301, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 11783.36, 20200302.0, 'NAGD', 1930585396.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY corp', 2020.0, 1930793953.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 74170.45, 20200416.0, 'NAC6', 1930793953.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930570269.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 40057.85, 20200228.0, 'NAH4', 1930570269.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930855827.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 39687.82, 20200505.0, 'NAH4', 1930855827.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960632432.0, '2020-05-03', 20200503, 20200503, '2020-05-15', 'CAD', 'RV', 1.0, 263083.04, 20200505.0, 'CA10', 2960632432.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 8363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930623059.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 343.17, 20200309.0, 'NAA8', 1930623059.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930861821.0, '2020-05-05', 20200506, 20200505, '2020-05-25', 'USD', 'RV', 1.0, 9487.55, 20200505.0, 'NAD1', 1930861821.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S us', 2020.0, 1930774174.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 109525.93, 20200411.0, 'NAA8', 1930774174.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930828056.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 4322.81, 20200427.0, 'NAAX', 1930828056.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930877610.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 35935.92, 20200508.0, 'NAH4', 1930877610.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 8368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930717904.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 31294.25, 20200330.0, 'NAA8', 1930717904.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG co', 2020.0, 1930785017.0, '2020-04-14', 20200414, 20200414, '2020-06-18', 'USD', 'RV', 1.0, 196534.12, 20200414.0, 'NAGD', 1930785017.0, 1, '2020-06-13', 'early' ); /* INSERT QUERY NO: 8370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930583669.0, '2020-02-28', 20200229, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 46072.93, 20200228.0, 'NAA8', 1930583669.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 8371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930800219.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 3099.77, 20200418.0, 'NAH4', 1930800219.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC us', 2020.0, 2960631095.0, '2020-04-30', 20200430, 20200430, '2020-05-11', 'CAD', 'RV', 1.0, 82460.62, 20200501.0, 'CA10', 2960631095.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930720477.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 27393.49, 20200330.0, 'NAH4', 1930720477.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930669336.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 22401.03, 20200319.0, 'NAH4', 1930669336.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930647589.0, '2020-03-19', 20200313, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 15649.16, 20200319.0, 'NAH4', 1930647589.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930825660.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 46081.22, 20200425.0, 'NAA8', 1930825660.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC systems', 2020.0, 1930820362.0, '2020-04-29', 20200423, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 3888.0, 20200429.0, 'NAA8', 1930820362.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE associates', 2020.0, 2960632619.0, '2020-05-05', 20200505, 20200505, '2020-05-16', 'CAD', 'RV', 1.0, 84436.0, 20200506.0, 'CA10', 2960632619.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 8379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930748588.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 1481.01, 20200406.0, 'NAH4', 1930748588.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930683250.0, '2020-03-20', 20200321, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 14124.85, 20200320.0, 'NAA8', 1930683250.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930826172.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 287.41, 20200426.0, 'NAH4', 1930826172.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930618287.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 49609.43, 20200307.0, 'NAH4', 1930618287.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100046476, 'PAPA JOH ', 2020.0, 1991842193.0, '2020-05-05', 20200505, 20200505, '2020-05-05', 'USD', 'RV', 1.0, 13876.0, 20200505.0, 'NAB1', 1991842193.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 8384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930604912.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 1017.41, 20200307.0, 'NAH4', 1930604912.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corporation', 2020.0, 1930799877.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 13376.94, 20200419.0, 'NAA8', 1930799877.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930784065.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 820.32, 20200415.0, 'NAH4', 1930784065.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL systems', 2020.0, 1930819147.0, '2020-04-28', 20200423, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 43483.61, 20200428.0, 'NAA8', 1930819147.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930586775.0, '2020-03-02', 20200302, 20200302, '2020-03-24', 'USD', 'RV', 1.0, 990.4, 20200301.0, 'NAM4', 1930586775.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930826589.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 3424.23, 20200425.0, 'NAH4', 1930826589.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA co', 2020.0, 1930669376.0, '2020-03-24', 20200319, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 21802.52, 20200324.0, 'NAA8', 1930669376.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930722971.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 17290.3, 20200331.0, 'NAH4', 1930722971.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200737422, 'BELLS corp', 2020.0, 1930670584.0, '2020-03-24', 20200319, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 27768.41, 20200324.0, 'NAA8', 1930670584.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104409, 'LOB trust', 2020.0, 2960624081.0, '2020-03-30', 20200330, 20200330, '2020-04-11', 'CAD', 'RV', 1.0, 146615.31, 20200401.0, 'CA10', 2960624081.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 8394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD in', 2020.0, 1930622188.0, '2020-03-13', 20200309, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 5690.11, 20200313.0, 'NAA8', 1930622188.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930700346.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 15188.96, 20200327.0, 'NAH4', 1930700346.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 8396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200559683, 'JACMAR us', 2020.0, 1930606556.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 20957.72, 20200305.0, 'NAA8', 1930606556.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR associates', 2020.0, 1930861097.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 70372.94, 20200507.0, 'NAA8', 1930861097.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930846989.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 39786.05, 20200502.0, 'NAH4', 1930846989.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960625245.0, '2020-03-30', 20200330, 20200330, '2020-04-09', 'CAD', 'RV', 1.0, 57369.74, 20200330.0, 'CA10', 2960625245.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 8400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL foundation', 2020.0, 1930833624.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 8401.2, 20200429.0, 'NAA8', 1930833624.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 8401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100056054, 'ACTIVE M associates', 2020.0, 2960629401.0, '2020-04-17', 20200417, 20200417, '2020-05-01', 'CAD', 'RV', 1.0, 3011.96, 20200421.0, 'CA10', 2960629401.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 8402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200795490, 'HY - systems', 2020.0, 1930705079.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 39201.32, 20200326.0, 'NAA8', 1930705079.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH associates', 2020.0, 1930719900.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 4526.61, 20200331.0, 'NAC6', 1930719900.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930697982.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 9485.26, 20200325.0, 'NAH4', 1930697982.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930855039.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 142.89, 20200504.0, 'NAA8', 1930855039.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 8406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930780785.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 25220.43, 20200414.0, 'NAC6', 1930780785.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 8407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930688835.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 23125.84, 20200324.0, 'NAC6', 1930688835.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930604913.0, '2020-03-05', 20200305, 20200305, '2020-04-08', 'USD', 'RV', 1.0, 6850.16, 20200305.0, 'NAAW', 1930604913.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930584748.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 34969.17, 20200302.0, 'NAH4', 1930584748.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930687044.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 4821.77, 20200323.0, 'NAH4', 1930687044.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA associates', 2020.0, 1930700902.0, '2020-03-25', 20200325, 20200325, '2020-04-08', 'USD', 'RV', 1.0, 33.24, 20200316.0, 'NAM4', 1930700902.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930698479.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 59.88, 20200325.0, 'NAH4', 1930698479.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930629657.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 1107.66, 20200310.0, 'NAA8', 1930629657.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930605678.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 1375.86, 20200305.0, 'NAA8', 1930605678.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 8415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100047471, 'ALL in', 2020.0, 1930655032.0, '2020-03-16', 20200316, 20200316, '2020-03-26', 'USD', 'RV', 1.0, 9864.6, 20200316.0, 'NA10', 1930655032.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 8416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH corporation', 2020.0, 1930788068.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 133585.33, 20200414.0, 'NAA8', 1930788068.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756762, 'BANNER systems', 2020.0, 1930720364.0, '2020-04-02', 20200330, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 17380.02, 20200402.0, 'NAA8', 1930720364.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER corp', 2020.0, 1930765310.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 55029.32, 20200409.0, 'NAA8', 1930765310.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930716564.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 41120.68, 20200330.0, 'NAA8', 1930716564.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930710667.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 15083.59, 20200329.0, 'NAH4', 1930710667.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930748504.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 30286.63, 20200405.0, 'NAH4', 1930748504.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930706306.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 33855.65, 20200326.0, 'NAH4', 1930706306.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930774217.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 6536.78, 20200411.0, 'NAC6', 1930774217.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930752730.0, '2020-04-08', 20200406, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 54997.44, 20200408.0, 'NAH4', 1930752730.0, 1, '2020-04-24', '0-15 days' ); /* INSERT QUERY NO: 8425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ us', 2020.0, 1930752135.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 99285.23, 20200406.0, 'NAA8', 1930752135.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT foundation', 2020.0, 1930725157.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 40927.67, 20200331.0, 'NAA8', 1930725157.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M in', 2020.0, 1930880643.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 49853.12, 20200508.0, 'NAA8', 1930880643.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930724610.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 10599.55, 20200401.0, 'NAC6', 1930724610.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC ', 2020.0, 2960630673.0, '2020-04-28', 20200428, 20200428, '2020-05-09', 'CAD', 'RV', 1.0, 52464.88, 20200429.0, 'CA10', 2960630673.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 8430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930806596.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 35878.39, 20200423.0, 'NAH4', 1930806596.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 8431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930630112.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 15653.94, 20200312.0, 'NAH4', 1930630112.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 8432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE co', 2020.0, 1930663835.0, '2020-03-18', 20200317, 20200318, '2020-05-22', 'USD', 'RV', 1.0, 8231.52, 20200318.0, 'NAGD', 1930663835.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930829463.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 242.69, 20200428.0, 'NAH4', 1930829463.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 8434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA co', 2020.0, 1930605991.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 25.92, 20200301.0, 'NAM4', 1930605991.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corp', 2020.0, 1930803207.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 93363.14, 20200421.0, 'NAA8', 1930803207.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930768800.0, '2020-04-11', 20200409, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 41270.53, 20200411.0, 'NAH4', 1930768800.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930584354.0, '2020-03-03', 20200229, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 8380.55, 20200303.0, 'NAH4', 1930584354.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 8438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER co', 2020.0, 1930651734.0, '2020-03-13', 20200314, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 128948.33, 20200313.0, 'NAA8', 1930651734.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930789648.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 22314.46, 20200416.0, 'NAH4', 1930789648.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT us', 2020.0, 1930827173.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 28166.5, 20200426.0, 'NAA8', 1930827173.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930671162.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 16477.14, 20200320.0, 'NAC6', 1930671162.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200704858, 'WAKE llc', 2020.0, 1930859655.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 87302.77, 20200506.0, 'NAA8', 1930859655.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930715462.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 31890.58, 20200329.0, 'NAC6', 1930715462.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930827203.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 63334.65, 20200425.0, 'NAH4', 1930827203.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO llc', 2020.0, 1930584418.0, '2020-03-04', 20200229, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 39293.31, 20200304.0, 'NAA8', 1930584418.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 8446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930773761.0, '2020-04-08', 20200410, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 1189.83, 20200408.0, 'NAA8', 1930773761.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930608221.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 19010.59, 20200305.0, 'NAH4', 1930608221.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 8448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930585702.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 18783.68, 20200301.0, 'NAA8', 1930585702.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930691782.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 1329.23, 20200326.0, 'NAH4', 1930691782.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930631937.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 13791.85, 20200312.0, 'NAH4', 1930631937.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 8451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930630431.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 34159.15, 20200311.0, 'NAH4', 1930630431.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & trust', 2020.0, 1930675306.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 34354.91, 20200320.0, 'NAA8', 1930675306.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930703935.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 774.32, 20200325.0, 'NAC6', 1930703935.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930790973.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 661.11, 20200416.0, 'NAH4', 1930790973.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC co', 2020.0, 1930744958.0, '2020-04-04', 20200404, 20200404, '2020-04-11', 'USD', 'RV', 1.0, 17249.24, 20200401.0, 'NAM2', 1930744958.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER us', 2020.0, 1930576155.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 82144.32, 20200227.0, 'NAA8', 1930576155.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 8457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930755172.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 284.44, 20200407.0, 'NAH4', 1930755172.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930705213.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 24651.63, 20200327.0, 'NAH4', 1930705213.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 8459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930714863.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 48893.58, 20200330.0, 'NAH4', 1930714863.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO associates', 2020.0, 2960630178.0, '2020-04-25', 20200425, 20200425, '2020-05-14', 'CAD', 'RV', 1.0, 67441.86, 20200504.0, 'CA10', 2960630178.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 8461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930773066.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 1080.18, 20200411.0, 'NAH4', 1930773066.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930824572.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 841.56, 20200424.0, 'NAU5', 1930824572.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930713632.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 13402.75, 20200327.0, 'NAA8', 1930713632.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S co', 2020.0, 1930693547.0, '2020-03-27', 20200324, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 44060.91, 20200327.0, 'NAA8', 1930693547.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC corporation', 2020.0, 1930584129.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 25029.0, 20200302.0, 'NAA8', 1930584129.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F co', 2020.0, 2960630468.0, '2020-04-25', 20200425, 20200425, '2020-05-07', 'CAD', 'RV', 1.0, 32787.49, 20200427.0, 'CA10', 2960630468.0, 1, '2020-05-11', '0-15 days' ); /* INSERT QUERY NO: 8467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792293, 'UNIFIE ', 2020.0, 1930834439.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 65091.94, 20200430.0, 'NAA8', 1930834439.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930751152.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 7995.73, 20200406.0, 'NAC6', 1930751152.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE trust', 2020.0, 1930856311.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 78077.3, 20200506.0, 'NAA8', 1930856311.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 8470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104392, 'FLANAG corporation', 2020.0, 2960617804.0, '2020-02-29', 20200229, 20200229, '2020-03-14', 'CAD', 'RV', 1.0, 16676.74, 20200304.0, 'CA10', 2960617804.0, 1, '2020-03-15', '0-15 days' ); /* INSERT QUERY NO: 8471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE systems', 2020.0, 1930770694.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 19111.37, 20200410.0, 'NAA8', 1930770694.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930576961.0, '2020-02-29', 20200227, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 40072.37, 20200229.0, 'NAH4', 1930576961.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG in', 2020.0, 1930862328.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 3340.42, 20200506.0, 'NAA8', 1930862328.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930755336.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 41748.84, 20200407.0, 'NAH4', 1930755336.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930803218.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 16353.81, 20200421.0, 'NAH4', 1930803218.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200900212, 'CASEY corp', 2020.0, 1930772240.0, '2020-04-09', 20200409, 20200409, '2020-06-13', 'USD', 'RV', 1.0, 358.49, 20200409.0, 'NAGD', 1930772240.0, 1, '2020-06-14', '0-15 days' ); /* INSERT QUERY NO: 8477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100032505, 'KEHE foundation', 2020.0, 1930768812.0, '2020-04-17', 20200409, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 6843.69, 20200417.0, 'NAA8', 1930768812.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 8478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930757581.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 44287.33, 20200407.0, 'NAH4', 1930757581.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 8479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW systems', 2020.0, 1930752915.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 25928.97, 20200407.0, 'NAA8', 1930752915.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930676053.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 21662.56, 20200321.0, 'NAH4', 1930676053.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930804145.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 13784.74, 20200421.0, 'NAC6', 1930804145.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930623197.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 14501.5, 20200309.0, 'NAH4', 1930623197.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ associates', 2020.0, 1930804834.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 29631.68, 20200420.0, 'NAA8', 1930804834.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930692599.0, '2020-03-22', 20200324, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 23530.45, 20200322.0, 'NAH4', 1930692599.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930845454.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 38064.69, 20200430.0, 'NAU5', 1930845454.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 8486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930813542.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 72946.58, 20200421.0, 'NAU5', 1930813542.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corp', 2020.0, 1930805231.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 82285.08, 20200420.0, 'NAU5', 1930805231.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930724593.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 42851.99, 20200401.0, 'NAH4', 1930724593.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA co', 2020.0, 1930646876.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 70424.54, 20200313.0, 'NAA8', 1930646876.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930774205.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 16214.81, 20200411.0, 'NAH4', 1930774205.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET corporation', 2020.0, 1930857774.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 6425.99, 20200506.0, 'NAA8', 1930857774.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 8492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104225, 'SAVE-ON- systems', 2020.0, 2960622608.0, '2020-03-19', 20200319, 20200319, '2020-03-29', 'CAD', 'RV', 1.0, 100472.38, 20200319.0, 'CA10', 2960622608.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 8493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930604977.0, '2020-03-10', 20200305, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 12991.07, 20200310.0, 'NAC6', 1930604977.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL in', 2020.0, 1930626245.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 88644.45, 20200310.0, 'NAA8', 1930626245.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL corp', 2020.0, 1930740104.0, '2020-04-09', 20200403, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 40700.91, 20200409.0, 'NAA8', 1930740104.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR co', 2020.0, 1930691844.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 106014.17, 20200326.0, 'NAA8', 1930691844.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930799588.0, '2020-04-22', 20200418, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 52107.86, 20200422.0, 'NAA8', 1930799588.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200557600, 'GREEN foundation', 2020.0, 1930713617.0, '2020-03-27', 20200327, 20200327, '2020-04-06', 'USD', 'RV', 1.0, 11652.37, 20200327.0, 'NA10', 1930713617.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corp', 2020.0, 2960622076.0, '2020-03-22', 20200322, 20200322, '2020-04-03', 'CAD', 'RV', 1.0, 186877.82, 20200324.0, 'CA10', 2960622076.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 8500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA corporation', 2020.0, 1930587203.0, '2020-03-02', 20200302, 20200302, '2020-03-24', 'USD', 'RV', 1.0, 7561.22, 20200301.0, 'NAM4', 1930587203.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930802517.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 4224.98, 20200420.0, 'NAH4', 1930802517.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930683020.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 19689.03, 20200321.0, 'NAH4', 1930683020.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F trust', 2020.0, 1930857977.0, '2020-05-04', 20200505, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 724.67, 20200504.0, 'NAA8', 1930857977.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 8504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930752471.0, '2020-04-03', 20200406, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 721.93, 20200403.0, 'NAA8', 1930752471.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930772422.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 14132.07, 20200410.0, 'NAH4', 1930772422.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 8506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930676519.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 41852.02, 20200320.0, 'NAH4', 1930676519.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA systems', 2020.0, 1930810934.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 22951.17, 20200423.0, 'NAA8', 1930810934.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200754118, 'ARMY us', 2020.0, 1930861287.0, '2020-05-06', 20200506, 20200506, '2020-04-16', 'USD', 'RV', 1.0, 193.9, 20200401.0, 'NAM3', 1930861287.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 200501669, 'WAL MA corporation', 2020.0, 1990572913.0, '2020-04-11', 20200409, 20200411, '2020-05-16', 'USD', 'RV', 1.0, 16381.68, 20200411.0, 'NAG2', 1990572913.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 8510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930738367.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 7238.38, 20200403.0, 'NAU5', 1930738367.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 8511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI systems', 2020.0, 1930725154.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 77692.24, 20200331.0, 'NAA8', 1930725154.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 8512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930731690.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 22534.28, 20200403.0, 'NAH4', 1930731690.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930819204.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1898.2, 20200424.0, 'NAH4', 1930819204.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930581668.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 49252.78, 20200228.0, 'NAH4', 1930581668.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140105686, 'SYSC corporation', 2020.0, 2960631838.0, '2020-04-30', 20200430, 20200430, '2020-05-16', 'CAD', 'RV', 1.0, 1769.62, 20200506.0, 'CA10', 2960631838.0, 1, '2020-05-21', '0-15 days' ); /* INSERT QUERY NO: 8516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100049207, 'JET foundation', 2020.0, 1930582626.0, '2020-03-04', 20200302, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 2786.61, 20200304.0, 'NAGD', 1930582626.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930638613.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 1329.23, 20200312.0, 'NAH4', 1930638613.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 8518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930753108.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 103555.69, 20200407.0, 'NAH4', 1930753108.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930847058.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 8793.09, 20200504.0, 'NAAX', 1930847058.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA foundation', 2020.0, 1930708620.0, '2020-03-26', 20200326, 20200326, '2020-04-15', 'USD', 'RV', 1.0, 703.49, 20200326.0, 'NAD1', 1930708620.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE corp', 2020.0, 1930838847.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 82611.98, 20200430.0, 'NAA8', 1930838847.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930652900.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 16417.58, 20200315.0, 'NAH4', 1930652900.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930637586.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 71624.22, 20200313.0, 'NAA8', 1930637586.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930793020.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 7096.53, 20200416.0, 'NAH4', 1930793020.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA co', 2020.0, 1930724354.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 22078.26, 20200330.0, 'NAA8', 1930724354.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR corporation', 2020.0, 1930817523.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 147859.25, 20200422.0, 'NAA8', 1930817523.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO us', 2020.0, 2960623282.0, '2020-03-24', 20200324, 20200324, '2020-04-05', 'CAD', 'RV', 1.0, 140627.5, 20200326.0, 'CA10', 2960623282.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 8528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR us', 2020.0, 1930821848.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 11839.69, 20200424.0, 'NAA8', 1930821848.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corporation', 2020.0, 1930587537.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 15848.71, 20200303.0, 'NAA8', 1930587537.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100032278, 'SI co', 2020.0, 1930814737.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 5613.12, 20200422.0, 'NAA8', 1930814737.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930791238.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 1898.9, 20200417.0, 'NAH4', 1930791238.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930885234.0, '2020-05-10', 20200511, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 37833.11, 20200510.0, 'NAH4', 1930885234.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 8533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930581673.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 147946.15, 20200228.0, 'NAA8', 1930581673.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 8534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930686958.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 6137.0, 20200323.0, 'NAH4', 1930686958.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930715786.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 19284.77, 20200331.0, 'NAH4', 1930715786.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE us', 2020.0, 1930617472.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 65674.48, 20200306.0, 'NAA8', 1930617472.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 8537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930731644.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 110054.45, 20200401.0, 'NAC6', 1930731644.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930772981.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1087.35, 20200409.0, 'NAA8', 1930772981.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH in', 2020.0, 1930709223.0, '2020-03-26', 20200327, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 23840.09, 20200326.0, 'NAC6', 1930709223.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930689230.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 1414.68, 20200323.0, 'NAH4', 1930689230.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930601044.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 15119.83, 20200306.0, 'NAH4', 1930601044.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930752146.0, '2020-04-03', 20200406, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 341.28, 20200403.0, 'NAA8', 1930752146.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT co', 2020.0, 1930681722.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 8293.61, 20200320.0, 'NAA8', 1930681722.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930558885.0, '2020-02-27', 20200223, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 66980.8, 20200227.0, 'NAH4', 1930558885.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL corp', 2020.0, 1930699434.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 42159.19, 20200326.0, 'NAA8', 1930699434.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960621171.0, '2020-03-18', 20200318, 20200318, '2020-04-06', 'CAD', 'RV', 1.0, 90353.6, 20200327.0, 'CA10', 2960621171.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 8547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930702179.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 37208.82, 20200326.0, 'NAC6', 1930702179.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930751208.0, '2020-04-04', 20200405, 20200404, '2020-05-08', 'USD', 'RV', 1.0, 1993.95, 20200404.0, 'NAAW', 1930751208.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930621623.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 88.39, 20200308.0, 'NAA8', 1930621623.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 8550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960626892.0, '2020-04-12', 20200412, 20200412, '2020-04-22', 'CAD', 'RV', 1.0, 41497.48, 20200412.0, 'CA10', 2960626892.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 8551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140101584, 'DICK corp', 2020.0, 1991840121.0, '2020-03-07', 20200303, 20200307, '2020-04-21', 'USD', 'RV', 1.0, 916.0, 20200307.0, 'NAVF', 1991840121.0, 1, '2020-04-26', '0-15 days' ); /* INSERT QUERY NO: 8552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA co', 2020.0, 1930658148.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 518.92, 20200316.0, 'NAA8', 1930658148.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 8553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER associates', 2020.0, 1930716396.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 17520.64, 20200329.0, 'NAA8', 1930716396.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C in', 2020.0, 1930773702.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 7571.48, 20200410.0, 'NAA8', 1930773702.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR corporation', 2020.0, 1930773505.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 68103.52, 20200410.0, 'NAA8', 1930773505.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO trust', 2020.0, 1930589653.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 140583.68, 20200303.0, 'NAA8', 1930589653.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930862215.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 860.3, 20200506.0, 'NAA8', 1930862215.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 8558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO trust', 2020.0, 1930823663.0, '2020-04-29', 20200424, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 14749.7, 20200429.0, 'NAA8', 1930823663.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 8559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930780306.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 41483.49, 20200414.0, 'NAH4', 1930780306.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930646846.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 43325.45, 20200314.0, 'NAH4', 1930646846.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930811745.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 4781.62, 20200416.0, 'NAM4', 1930811745.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 8562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL in', 2020.0, 1930610054.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 21300.0, 20200306.0, 'NAA8', 1930610054.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140101772, 'CHIHAD foundation', 2020.0, 1991840388.0, '2020-04-19', 20200415, 20200419, '2020-05-19', 'USD', 'RV', 1.0, 955.7, 20200419.0, 'NAVE', 1991840388.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 8564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE foundation', 2020.0, 1930854475.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 6820.2, 20200507.0, 'NAA8', 1930854475.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC llc', 2020.0, 1930671640.0, '2020-03-24', 20200319, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 5924.82, 20200324.0, 'NAA8', 1930671640.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930623978.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 40556.91, 20200310.0, 'NAH4', 1930623978.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930674432.0, '2020-03-10', 20200320, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 2054.93, 20200310.0, 'NAA8', 1930674432.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960625544.0, '2020-04-02', 20200402, 20200402, '2020-04-20', 'CAD', 'RV', 1.0, 157464.24, 20200410.0, 'CA10', 2960625544.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 8569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE us', 2020.0, 1930823000.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 134851.32, 20200424.0, 'NAA8', 1930823000.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200978592, 'PLAZA ', 2020.0, 1990572412.0, '2020-04-04', 20200331, 20200404, '2020-05-09', 'USD', 'RV', 1.0, 22852.22, 20200404.0, 'NAG2', 1990572412.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 8571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930584419.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 603.89, 20200301.0, 'NAA8', 1930584419.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC llc', 2020.0, 1930813130.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 2340.69, 20200416.0, 'NAM4', 1930813130.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 8573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930781268.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 17040.11, 20200413.0, 'NAH4', 1930781268.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 8574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930838224.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 23960.59, 20200501.0, 'NAH4', 1930838224.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 8575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT llc', 2020.0, 1930871179.0, '2020-05-06', 20200507, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 17486.59, 20200506.0, 'NAU5', 1930871179.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 8576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E llc', 2020.0, 1930585177.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 40332.37, 20200302.0, 'NAA8', 1930585177.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA co', 2020.0, 1930617970.0, '2020-03-06', 20200307, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 23959.84, 20200306.0, 'NAA8', 1930617970.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200561861, 'CO foundation', 2020.0, 1930710572.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 4380.48, 20200329.0, 'NAA8', 1930710572.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930715677.0, '2020-03-15', 20200328, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 765.85, 20200315.0, 'NAA8', 1930715677.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930875938.0, '2020-05-06', 20200507, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 308.54, 20200506.0, 'NAA8', 1930875938.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930822398.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 60139.87, 20200424.0, 'NAH4', 1930822398.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100056666, 'KGL FOO corp', 2020.0, 1930843482.0, '2020-05-01', 20200430, 20200501, '2020-05-01', 'USD', 'RV', 1.0, 22819.1, 20200501.0, 'NAB1', 1930843482.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 8583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU corp', 2020.0, 1930779919.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 84852.34, 20200413.0, 'NAA8', 1930779919.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 8584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930577556.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 235.05, 20200228.0, 'NAA8', 1930577556.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 8585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S trust', 2020.0, 1930669689.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 66.49, 20200318.0, 'NAA8', 1930669689.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930683204.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 2373.96, 20200321.0, 'NAH4', 1930683204.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930619602.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 30509.4, 20200307.0, 'NAA8', 1930619602.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 8588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH llc', 2020.0, 1930732245.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 32058.73, 20200402.0, 'NAA8', 1930732245.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930568689.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 14424.75, 20200227.0, 'NAH4', 1930568689.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930681397.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 20198.44, 20200321.0, 'NAU5', 1930681397.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930686380.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 19022.69, 20200323.0, 'NAH4', 1930686380.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930871151.0, '2020-05-08', 20200506, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 23118.94, 20200508.0, 'NAH4', 1930871151.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960619053.0, '2020-03-08', 20200308, 20200308, '2020-03-20', 'CAD', 'RV', 1.0, 127138.5, 20200310.0, 'CA10', 2960619053.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 8594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930749621.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 31216.44, 20200405.0, 'NAH4', 1930749621.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corp', 2020.0, 1930780251.0, '2020-04-13', 20200413, 20200413, '2020-05-17', 'USD', 'RV', 1.0, 25171.45, 20200413.0, 'NAAW', 1930780251.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930801770.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 253.16, 20200420.0, 'NAA8', 1930801770.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930651469.0, '2020-03-17', 20200314, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 26360.96, 20200317.0, 'NAH4', 1930651469.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100047527, 'LIDL in', 2020.0, 1930661000.0, '2020-03-21', 20200317, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 15051.69, 20200321.0, 'NAA8', 1930661000.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 8599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR foundation', 2020.0, 1930641639.0, '2020-03-13', 20200311, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 907.91, 20200313.0, 'NAGD', 1930641639.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE systems', 2020.0, 1930672458.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 70777.17, 20200321.0, 'NAA8', 1930672458.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960630741.0, '2020-04-29', 20200429, 20200429, '2020-05-10', 'CAD', 'RV', 1.0, 11131.57, 20200430.0, 'CA10', 2960630741.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 8602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200755701, 'ASSOCI corp', 2020.0, 1930782556.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 15877.77, 20200415.0, 'NAA8', 1930782556.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 8603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200743996, 'STATER trust', 2020.0, 1930687372.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 57256.7, 20200324.0, 'NAA8', 1930687372.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930708678.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 20366.27, 20200326.0, 'NAA8', 1930708678.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930585523.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 44761.02, 20200302.0, 'NAH4', 1930585523.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL corporation', 2020.0, 1930796997.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 56334.5, 20200417.0, 'NAA8', 1930796997.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930605195.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 15696.79, 20200307.0, 'NAH4', 1930605195.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200331749, 'SYSC in', 2020.0, 1930839711.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 21760.72, 20200429.0, 'NAA8', 1930839711.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER co', 2020.0, 1930571978.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 17303.0, 20200227.0, 'NAA8', 1930571978.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 8610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930788342.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 10888.18, 20200415.0, 'NAH4', 1930788342.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930780526.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 232.94, 20200413.0, 'NAA8', 1930780526.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 8612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB associates', 2020.0, 2960625286.0, '2020-04-01', 20200401, 20200401, '2020-04-13', 'CAD', 'RV', 1.0, 40712.68, 20200403.0, 'CA10', 2960625286.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 8613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO ', 2020.0, 1930702257.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 47421.26, 20200326.0, 'NAA8', 1930702257.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930713556.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 36704.33, 20200329.0, 'NAH4', 1930713556.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930665476.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 3270.04, 20200318.0, 'NAH4', 1930665476.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100026809, 'PRES llc', 2020.0, 1930645667.0, '2020-03-12', 20200312, 20200312, '2020-03-22', 'USD', 'RV', 1.0, 201.25, 20200312.0, 'NA10', 1930645667.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH us', 2020.0, 1930617229.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 52256.16, 20200309.0, 'NAA8', 1930617229.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104392, 'FLANAG corp', 2020.0, 2960627412.0, '2020-04-08', 20200408, 20200408, '2020-04-22', 'CAD', 'RV', 1.0, 3180.99, 20200412.0, 'CA10', 2960627412.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 8619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930826911.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 29906.4, 20200426.0, 'NAH4', 1930826911.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA foundation', 2020.0, 1930855979.0, '2020-05-04', 20200504, 20200504, '2020-05-24', 'USD', 'RV', 1.0, 1717.96, 20200501.0, 'NAM4', 1930855979.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 8621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corp', 2020.0, 1930879540.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 7358.49, 20200509.0, 'NAH4', 1930879540.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 8622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA associates', 2020.0, 1930759609.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 3399.34, 20200407.0, 'NAA8', 1930759609.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930604949.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 16152.81, 20200306.0, 'NAH4', 1930604949.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930653825.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 10263.16, 20200316.0, 'NAH4', 1930653825.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797452, 'US us', 2020.0, 1930594638.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 70183.69, 20200303.0, 'NAA8', 1930594638.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930858662.0, '2020-05-05', 20200505, 20200505, '2020-05-11', 'USD', 'RV', 1.0, 2004.38, 20200501.0, 'NAM2', 1930858662.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036538, 'DENVER us', 2020.0, 1930798670.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 8450.0, 20200420.0, 'NAA8', 1930798670.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F llc', 2020.0, 1930844769.0, '2020-04-30', 20200501, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 5179.11, 20200430.0, 'NAA8', 1930844769.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 8629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY corporation', 2020.0, 1930810412.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 14759.59, 20200423.0, 'NAA8', 1930810412.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA corporation', 2020.0, 1930789312.0, '2020-04-15', 20200415, 20200415, '2020-04-08', 'USD', 'RV', 1.0, 2339.5, 20200316.0, 'NAM4', 1930789312.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200789077, 'US llc', 2020.0, 1930764287.0, '2020-04-15', 20200408, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 6035.74, 20200415.0, 'NAA8', 1930764287.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 8632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930725774.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 3793.4, 20200402.0, 'NAH4', 1930725774.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 8633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 140103409, 'BUTTE co', 2020.0, 1991839947.0, '2020-03-06', 20200304, 20200306, '2020-04-05', 'USD', 'RV', 1.0, 37994.45, 20200306.0, 'NAVE', 1991839947.0, 1, '2020-04-15', '0-15 days' ); /* INSERT QUERY NO: 8634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930754084.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 14381.84, 20200407.0, 'NAH4', 1930754084.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA llc', 2020.0, 1930807922.0, '2020-04-21', 20200421, 20200421, '2020-04-23', 'USD', 'RV', 1.0, 1394.19, 20200416.0, 'NAM1', 1930807922.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA foundation', 2020.0, 1930652467.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 518.28, 20200314.0, 'NAA8', 1930652467.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930844021.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 55691.76, 20200501.0, 'NAA8', 1930844021.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200803720, 'DEC foundation', 2020.0, 1930765383.0, '2020-04-10', 20200410, 20200410, '2020-04-08', 'USD', 'RV', 1.0, 14812.95, 20200401.0, 'NAM1', 1930765383.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 8639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930582449.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 52661.79, 20200228.0, 'NAU5', 1930582449.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200833713, 'JETRO associates', 2020.0, 1930843889.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 7948.41, 20200501.0, 'NAA8', 1930843889.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corporation', 2020.0, 2960625827.0, '2020-04-01', 20200401, 20200401, '2020-04-11', 'CAD', 'RV', 1.0, 62156.26, 20200401.0, 'CA10', 2960625827.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 8642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930772304.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 61.29, 20200410.0, 'NAH4', 1930772304.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 8643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930744690.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 48319.9, 20200404.0, 'NAH4', 1930744690.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN ', 2020.0, 1930684491.0, '2020-03-25', 20200321, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 15901.0, 20200325.0, 'NAA8', 1930684491.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930638115.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 28024.74, 20200312.0, 'NAH4', 1930638115.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 8646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930798781.0, '2020-04-20', 20200417, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 14962.04, 20200420.0, 'NAH4', 1930798781.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS us', 2020.0, 1930715611.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 14483.76, 20200327.0, 'NAA8', 1930715611.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930632794.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 27759.3, 20200311.0, 'NAH4', 1930632794.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930691637.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1817.17, 20200324.0, 'NAA8', 1930691637.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104508, 'BULK trust', 2020.0, 2960620508.0, '2020-03-11', 20200311, 20200311, '2020-03-23', 'CAD', 'RV', 1.0, 13610.96, 20200313.0, 'CA10', 2960620508.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 8651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930738753.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 80536.63, 20200404.0, 'NAC6', 1930738753.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930654701.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 23360.14, 20200315.0, 'NAA8', 1930654701.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930674481.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 40887.27, 20200322.0, 'NAH4', 1930674481.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M in', 2020.0, 2960625208.0, '2020-03-28', 20200328, 20200328, '2020-04-07', 'CAD', 'RV', 1.0, 22137.03, 20200328.0, 'CA10', 2960625208.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 8655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930883899.0, '2020-05-11', 20200510, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 12076.99, 20200511.0, 'NAH4', 1930883899.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 8656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930879708.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 12497.08, 20200509.0, 'NAH4', 1930879708.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 8657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR associates', 2020.0, 2960623205.0, '2020-03-21', 20200321, 20200321, '2020-04-01', 'CAD', 'RV', 1.0, 3324.91, 20200322.0, 'CA10', 2960623205.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 8658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930687133.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 48319.9, 20200325.0, 'NAH4', 1930687133.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930693276.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 27837.04, 20200324.0, 'NAH4', 1930693276.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930800114.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 52421.03, 20200419.0, 'NAH4', 1930800114.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR in', 2020.0, 2960621488.0, '2020-03-22', 20200322, 20200322, '2020-04-03', 'CAD', 'RV', 1.0, 70311.91, 20200324.0, 'CA10', 2960621488.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 8662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930700584.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 8465.57, 20200326.0, 'NAAX', 1930700584.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930683633.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 9832.26, 20200323.0, 'NAH4', 1930683633.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 8664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930676762.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 29115.27, 20200321.0, 'NAA8', 1930676762.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930822767.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 176013.31, 20200425.0, 'NAA8', 1930822767.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930611710.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 38185.84, 20200306.0, 'NAH4', 1930611710.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL systems', 2020.0, 1930691732.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 74495.32, 20200325.0, 'NAA8', 1930691732.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930815463.0, '2020-04-23', 20200423, 20200423, '2020-06-27', 'USD', 'RV', 1.0, 6753.6, 20200423.0, 'NAGD', 1930815463.0, 1, '2020-06-22', 'early' ); /* INSERT QUERY NO: 8669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930600080.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 84649.31, 20200305.0, 'NAU5', 1930600080.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR llc', 2020.0, 1930724153.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 112319.65, 20200401.0, 'NAA8', 1930724153.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930667598.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 154100.08, 20200319.0, 'NAA8', 1930667598.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930687146.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 6156.84, 20200324.0, 'NAH4', 1930687146.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH trust', 2020.0, 1930731076.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 98197.93, 20200401.0, 'NAA8', 1930731076.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corporation', 2020.0, 1930860603.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 189.08, 20200501.0, 'NAM4', 1930860603.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930703354.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 16223.52, 20200326.0, 'NAH4', 1930703354.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO llc', 2020.0, 2960626861.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'CAD', 'RV', 1.0, 45736.31, 20200414.0, 'CA10', 2960626861.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 8677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930717240.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 420.65, 20200329.0, 'NAH4', 1930717240.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930653432.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 18658.76, 20200314.0, 'NAH4', 1930653432.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930814796.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 53389.73, 20200424.0, 'NAH4', 1930814796.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE trust', 2020.0, 1930717731.0, '2020-03-31', 20200329, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 9927.23, 20200331.0, 'NAA8', 1930717731.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR corp', 2020.0, 1930822385.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 120175.85, 20200424.0, 'NAA8', 1930822385.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE systems', 2020.0, 1930789830.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 24508.26, 20200415.0, 'NAA8', 1930789830.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 8683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930773244.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 141.6, 20200401.0, 'NAM4', 1930773244.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769556, 'SHAM ', 2020.0, 1930855396.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 16495.5, 20200506.0, 'NAA8', 1930855396.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100011799, 'CORN co', 2020.0, 1930732488.0, '2020-04-02', 20200402, 20200402, '2020-05-02', 'USD', 'RV', 1.0, 138690.0, 20200402.0, 'BR12', 1930732488.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE trust', 2020.0, 1930813670.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 81707.56, 20200422.0, 'NAA8', 1930813670.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE co', 2020.0, 1930592903.0, '2020-03-03', 20200302, 20200303, '2020-05-07', 'USD', 'RV', 1.0, 17626.9, 20200303.0, 'NAGD', 1930592903.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930694201.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 15367.37, 20200324.0, 'NAA8', 1930694201.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL associates', 2020.0, 1930780788.0, '2020-04-16', 20200413, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 29186.67, 20200416.0, 'NAA8', 1930780788.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930793514.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 6692.27, 20200418.0, 'NAH4', 1930793514.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200881076, 'ALBERT trust', 2020.0, 1930854415.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 126063.27, 20200503.0, 'NAA8', 1930854415.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 8692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG associates', 2020.0, 1930685508.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 4981.77, 20200322.0, 'NAA8', 1930685508.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200999003, 'VALE corp', 2020.0, 1930738955.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 104039.94, 20200404.0, 'NAA8', 1930738955.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930675191.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 10657.35, 20200321.0, 'NAH4', 1930675191.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER in', 2020.0, 1930693591.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 110225.07, 20200325.0, 'NAA8', 1930693591.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC corporation', 2020.0, 1930682584.0, '2020-03-21', 20200321, 20200321, '2020-03-26', 'USD', 'RV', 1.0, 20041.34, 20200316.0, 'NAM2', 1930682584.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930789257.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 40200.84, 20200417.0, 'NAAX', 1930789257.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930622694.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 22416.28, 20200308.0, 'NAA8', 1930622694.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 8699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT llc', 2020.0, 1930624536.0, '2020-03-08', 20200309, 20200308, '2020-04-11', 'USD', 'RV', 1.0, 4588.11, 20200308.0, 'NAAW', 1930624536.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930701399.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 28396.88, 20200325.0, 'NAH4', 1930701399.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 8701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA corp', 2020.0, 1930645636.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 350.39, 20200312.0, 'NAA8', 1930645636.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH trust', 2020.0, 1930723144.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 114352.93, 20200331.0, 'NAC6', 1930723144.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930788359.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 979.61, 20200415.0, 'NAH4', 1930788359.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930681207.0, '2020-03-26', 20200320, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 12723.44, 20200326.0, 'NAH4', 1930681207.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR associates', 2020.0, 1930720307.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 54495.83, 20200331.0, 'NAA8', 1930720307.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930764272.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 57627.22, 20200408.0, 'NAC6', 1930764272.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200212683, 'RUIZ F corporation', 2020.0, 1930573570.0, '2020-02-28', 20200226, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 41754.24, 20200228.0, 'NAA8', 1930573570.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 8708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT corp', 2020.0, 1930582240.0, '2020-02-28', 20200228, 20200228, '2020-04-03', 'USD', 'RV', 1.0, 13715.26, 20200228.0, 'NAG2', 1930582240.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930794844.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 72850.92, 20200418.0, 'NAH4', 1930794844.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT associates', 2020.0, 1930680999.0, '2020-03-20', 20200320, 20200320, '2020-04-21', 'USD', 'RV', 1.0, 2695.24, 20200320.0, 'NA32', 1930680999.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930586607.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 490.04, 20200302.0, 'NAH4', 1930586607.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930652207.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 12177.75, 20200315.0, 'NAH4', 1930652207.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200720238, 'WOODM corporation', 2020.0, 1930751848.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 100561.36, 20200406.0, 'NAA8', 1930751848.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 8714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC trust', 2020.0, 2960618824.0, '2020-03-05', 20200305, 20200305, '2020-03-23', 'CAD', 'RV', 1.0, 4612.4, 20200313.0, 'CA10', 2960618824.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 8715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO llc', 2020.0, 2960628982.0, '2020-04-17', 20200418, 20200417, '2020-05-01', 'CAD', 'RV', 1.0, 225151.01, 20200421.0, 'CA10', 2960628982.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 8716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930758281.0, '2020-04-09', 20200407, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1695.68, 20200409.0, 'NAH4', 1930758281.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 8717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200790107, 'ROU trust', 2020.0, 1930670468.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 16630.96, 20200319.0, 'NAC6', 1930670468.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100001196, 'DOLLAR llc', 2020.0, 1930861394.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 15428.83, 20200507.0, 'NAA8', 1930861394.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930654509.0, '2020-03-15', 20200315, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 70732.44, 20200315.0, 'NAH4', 1930654509.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER us', 2020.0, 1930753314.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 64222.54, 20200406.0, 'NAA8', 1930753314.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO ', 2020.0, 1930670309.0, '2020-03-25', 20200318, 20200325, '2020-04-26', 'USD', 'RV', 1.0, 11166.46, 20200325.0, 'NA32', 1930670309.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930808781.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 47591.66, 20200421.0, 'NAA8', 1930808781.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930725725.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 2594.88, 20200331.0, 'NAU5', 1930725725.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960620536.0, '2020-03-12', 20200312, 20200312, '2020-03-23', 'CAD', 'RV', 1.0, 25782.71, 20200313.0, 'CA10', 2960620536.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 8725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930688457.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 9525.6, 20200324.0, 'NAA8', 1930688457.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW corp', 2020.0, 1930598488.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 46244.97, 20200304.0, 'NAA8', 1930598488.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 8727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930731271.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 67429.17, 20200402.0, 'NAA8', 1930731271.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR corp', 2020.0, 1930797392.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 62332.21, 20200418.0, 'NAA8', 1930797392.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS ', 2020.0, 1930810394.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 47067.5, 20200421.0, 'NAA8', 1930810394.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930802481.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 17300.08, 20200420.0, 'NAA8', 1930802481.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW associates', 2020.0, 1930809923.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 72972.53, 20200421.0, 'NAA8', 1930809923.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930687560.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 5740.68, 20200324.0, 'NAH4', 1930687560.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA co', 2020.0, 1930606093.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 27.0, 20200301.0, 'NAM4', 1930606093.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200915438, 'GROC corporation', 2020.0, 1930852380.0, '2020-05-06', 20200502, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 24322.5, 20200506.0, 'NAA8', 1930852380.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER corporation', 2020.0, 1930711453.0, '2020-04-03', 20200328, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 64685.68, 20200403.0, 'NAA8', 1930711453.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930618519.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 5010.36, 20200301.0, 'NAM4', 1930618519.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corporation', 2020.0, 1930772475.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 2150.1, 20200401.0, 'NAM4', 1930772475.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930585856.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 23103.12, 20200301.0, 'NAA8', 1930585856.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 8739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU trust', 2020.0, 1930843484.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 77646.07, 20200430.0, 'NAA8', 1930843484.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930829252.0, '2020-04-26', 20200427, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 24509.66, 20200426.0, 'NAH4', 1930829252.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK corporation', 2020.0, 1930837898.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 89531.7, 20200429.0, 'NAA8', 1930837898.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE ', 2020.0, 1930828731.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 12186.92, 20200426.0, 'NAA8', 1930828731.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 8743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA systems', 2020.0, 1930806578.0, '2020-04-21', 20200421, 20200421, '2020-03-26', 'USD', 'RV', 1.0, 18223.52, 20200316.0, 'NAM2', 1930806578.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783317, 'VIEL foundation', 2020.0, 1930753112.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 41147.37, 20200407.0, 'NAA8', 1930753112.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930585480.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 255.22, 20200302.0, 'NAH4', 1930585480.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR co', 2020.0, 1930897545.0, '2020-05-12', 20200513, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 943.12, 20200512.0, 'NAH4', 1930897545.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 8747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930797084.0, '2020-04-21', 20200417, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 4270.97, 20200421.0, 'NAA8', 1930797084.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S corp', 2020.0, 1930671709.0, '2020-03-21', 20200319, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 142020.91, 20200321.0, 'NAA8', 1930671709.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930716176.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 556.82, 20200328.0, 'NAA8', 1930716176.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR in', 2020.0, 1930601476.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 5988.21, 20200305.0, 'NAA8', 1930601476.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 8751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA co', 2020.0, 1930589767.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 21544.32, 20200305.0, 'NAA8', 1930589767.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 8752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M llc', 2020.0, 2960621312.0, '2020-03-14', 20200314, 20200314, '2020-03-25', 'CAD', 'RV', 1.0, 54502.58, 20200315.0, 'CA10', 2960621312.0, 1, '2020-03-29', '0-15 days' ); /* INSERT QUERY NO: 8753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200559683, 'JACMAR trust', 2020.0, 1930659097.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 23069.62, 20200316.0, 'NAA8', 1930659097.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 8754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960619678.0, '2020-03-09', 20200309, 20200309, '2020-03-19', 'CAD', 'RV', 1.0, 18979.73, 20200309.0, 'CA10', 2960619678.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 8755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930726616.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 13615.23, 20200401.0, 'NAH4', 1930726616.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 8756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712102, 'SUGAR associates', 2020.0, 1930605945.0, '2020-03-05', 20200305, 20200305, '2020-05-04', 'USD', 'RV', 1.0, 40697.0, 20200305.0, 'NAVQ', 1930605945.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930666396.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 152487.66, 20200318.0, 'NAA8', 1930666396.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930808371.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 46352.1, 20200422.0, 'NAA8', 1930808371.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR associates', 2020.0, 1930877427.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 9743.46, 20200508.0, 'NAH4', 1930877427.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 8760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106249, 'FINDLAY corp', 2020.0, 2960621184.0, '2020-03-18', 20200318, 20200318, '2020-03-30', 'CAD', 'RV', 1.0, 3546.65, 20200320.0, 'CA10', 2960621184.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 8761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930826662.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 3797.1, 20200426.0, 'NAH4', 1930826662.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930616812.0, '2020-03-08', 20200306, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 3797.1, 20200308.0, 'NAH4', 1930616812.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930675302.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 51235.97, 20200320.0, 'NAH4', 1930675302.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 8764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA corporation', 2020.0, 1930848003.0, '2020-05-06', 20200502, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 22469.7, 20200506.0, 'NAA8', 1930848003.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930831177.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 5601.67, 20200428.0, 'NAH4', 1930831177.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 8766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930752745.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 14204.38, 20200407.0, 'NAAX', 1930752745.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930584338.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 4375.86, 20200301.0, 'NAH4', 1930584338.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930809331.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 7816.77, 20200421.0, 'NAA8', 1930809331.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT trust', 2020.0, 1930636529.0, '2020-03-10', 20200310, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 104257.16, 20200310.0, 'NAGD', 1930636529.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M systems', 2020.0, 1930776522.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 94581.74, 20200410.0, 'NAA8', 1930776522.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930739106.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 43321.13, 20200404.0, 'NAH4', 1930739106.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200229974, 'DARDEN D llc', 2020.0, 1930568883.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 6377.06, 20200227.0, 'NAA8', 1930568883.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 8773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749782, 'KROG systems', 2020.0, 1930636544.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 11603.25, 20200311.0, 'NAA8', 1930636544.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930717903.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 9077.23, 20200330.0, 'NAH4', 1930717903.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU foundation', 2020.0, 1930775166.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 102531.01, 20200412.0, 'NAA8', 1930775166.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 8776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930576799.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 15882.2, 20200228.0, 'NAH4', 1930576799.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY systems', 2020.0, 1930727144.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 14380.85, 20200402.0, 'NAA8', 1930727144.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930829821.0, '2020-04-29', 20200427, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 56186.99, 20200429.0, 'NAA8', 1930829821.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930803697.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 53460.78, 20200423.0, 'NAH4', 1930803697.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 8780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930782403.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 546.41, 20200414.0, 'NAH4', 1930782403.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930677284.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 6441.42, 20200322.0, 'NAH4', 1930677284.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN ', 2020.0, 1930577344.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 3567.6, 20200304.0, 'NAA8', 1930577344.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930759328.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 3979.11, 20200407.0, 'NAH4', 1930759328.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S co', 2020.0, 1930636795.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 143932.6, 20200311.0, 'NAA8', 1930636795.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930715099.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 31081.2, 20200329.0, 'NAH4', 1930715099.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930759417.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 1671.2, 20200408.0, 'NAH4', 1930759417.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 8787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL corp', 2020.0, 1930739264.0, '2020-04-09', 20200403, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 14217.16, 20200409.0, 'NAA8', 1930739264.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930783397.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 114.29, 20200416.0, 'NAA8', 1930783397.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS llc', 2020.0, 1930886369.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 3300.39, 20200511.0, 'NAA8', 1930886369.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 8790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200078854, 'MC A associates', 2020.0, 1930655753.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 6171.1, 20200317.0, 'NAA8', 1930655753.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930605056.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 1563.29, 20200305.0, 'NAH4', 1930605056.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU systems', 2020.0, 1930797388.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 18192.25, 20200420.0, 'NAA8', 1930797388.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 8793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930779995.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 2454.24, 20200414.0, 'NAH4', 1930779995.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER corp', 2020.0, 1930585379.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 16943.11, 20200302.0, 'NAA8', 1930585379.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200956366, 'RICH trust', 2020.0, 1930819440.0, '2020-04-28', 20200423, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 6462.72, 20200428.0, 'NAA8', 1930819440.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 8796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200720238, 'WOODM systems', 2020.0, 1930684481.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 3271.88, 20200323.0, 'NAA8', 1930684481.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH ', 2020.0, 1930719659.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 21451.68, 20200331.0, 'NAC6', 1930719659.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930692724.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 471.56, 20200324.0, 'NAH4', 1930692724.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930647435.0, '2020-03-13', 20200313, 20200313, '2020-05-17', 'USD', 'RV', 1.0, 1576.81, 20200313.0, 'NAGD', 1930647435.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930821414.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 1467.99, 20200424.0, 'NAH4', 1930821414.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 8801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW llc', 2020.0, 1930803662.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 48635.97, 20200422.0, 'NAA8', 1930803662.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930581161.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 1322.22, 20200228.0, 'NAH4', 1930581161.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA ', 2020.0, 1930689516.0, '2020-03-24', 20200324, 20200324, '2020-03-23', 'USD', 'RV', 1.0, 320.43, 20200316.0, 'NAM1', 1930689516.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 8804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ foundation', 2020.0, 1930854962.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 3810.77, 20200504.0, 'NAA8', 1930854962.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 8805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930692430.0, '2020-03-24', 20200324, 20200324, '2020-03-23', 'USD', 'RV', 1.0, 7717.2, 20200316.0, 'NAM1', 1930692430.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930775158.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 96937.8, 20200413.0, 'NAH4', 1930775158.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 8807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100021540, 'MASTER trust', 2020.0, 1930845883.0, '2020-05-01', 20200501, 20200501, '2020-05-11', 'USD', 'RV', 1.0, 6373.44, 20200501.0, 'NA10', 1930845883.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN in', 2020.0, 1930856858.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 14227.82, 20200507.0, 'NAA8', 1930856858.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 8809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930821958.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 265.44, 20200424.0, 'NAA8', 1930821958.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001452, 'COASTAL trust', 2020.0, 1930632741.0, '2020-03-13', 20200310, 20200313, '2020-04-02', 'USD', 'RV', 1.0, 3474.8, 20200313.0, 'NAD1', 1930632741.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930751766.0, '2020-04-07', 20200405, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 18982.74, 20200407.0, 'NAH4', 1930751766.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200519201, 'KROGE associates', 2020.0, 1930620819.0, '2020-03-07', 20200307, 20200307, '2020-05-11', 'USD', 'RV', 1.0, 54621.08, 20200307.0, 'NAGD', 1930620819.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 8813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930649459.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 65640.76, 20200314.0, 'NAH4', 1930649459.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corp', 2020.0, 1930838198.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 16230.48, 20200430.0, 'NAA8', 1930838198.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 8815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN trust', 2020.0, 1930739458.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 68900.66, 20200403.0, 'NAA8', 1930739458.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS associates', 2020.0, 1930637979.0, '2020-03-13', 20200311, 20200313, '2020-04-17', 'USD', 'RV', 1.0, 10648.32, 20200313.0, 'NAG2', 1930637979.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 8817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER us', 2020.0, 1930857918.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 116359.61, 20200504.0, 'NAA8', 1930857918.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 8818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930719626.0, '2020-04-02', 20200330, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 14332.8, 20200402.0, 'NAA8', 1930719626.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 8819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930684325.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 53005.23, 20200322.0, 'NAH4', 1930684325.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930766624.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 70707.22, 20200409.0, 'NAH4', 1930766624.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 8821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE in', 2020.0, 2960617639.0, '2020-03-03', 20200303, 20200303, '2020-03-14', 'CAD', 'RV', 1.0, 75691.96, 20200304.0, 'CA10', 2960617639.0, 1, '2020-03-19', '0-15 days' ); /* INSERT QUERY NO: 8822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200609331, 'KROG foundation', 2020.0, 1930719663.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 13251.17, 20200330.0, 'NAA8', 1930719663.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT ', 2020.0, 1930782779.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 93146.79, 20200413.0, 'NAA8', 1930782779.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL us', 2020.0, 1930642810.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 42359.51, 20200313.0, 'NAA8', 1930642810.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 8825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100012991, 'CJR WH corp', 2020.0, 2960623318.0, '2020-03-22', 20200323, 20200322, '2020-04-02', 'CAD', 'RV', 1.0, 43711.67, 20200323.0, 'CA10', 2960623318.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 8826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930739448.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 32693.54, 20200403.0, 'NAH4', 1930739448.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200501669, 'WAL MA co', 2020.0, 1990572012.0, '2020-03-16', 20200314, 20200316, '2020-04-20', 'USD', 'RV', 1.0, 10684.92, 20200316.0, 'NAG2', 1990572012.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 8828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104423, 'METRO llc', 2020.0, 2960633275.0, '2020-05-06', 20200506, 20200506, '2020-05-18', 'CAD', 'RV', 1.0, 119100.2, 20200508.0, 'CA10', 2960633275.0, 1, '2020-05-26', '0-15 days' ); /* INSERT QUERY NO: 8829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN llc', 2020.0, 1930818699.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 65432.09, 20200423.0, 'NAA8', 1930818699.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930833089.0, '2020-04-30', 20200428, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 14537.86, 20200430.0, 'NAH4', 1930833089.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930837791.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 21746.36, 20200429.0, 'NAH4', 1930837791.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU ', 2020.0, 1930798305.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 127588.07, 20200417.0, 'NAC6', 1930798305.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930715523.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 139052.01, 20200328.0, 'NAA8', 1930715523.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930744090.0, '2020-04-06', 20200403, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 14048.9, 20200406.0, 'NAH4', 1930744090.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930753034.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 3012.53, 20200406.0, 'NAU5', 1930753034.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 8836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930839399.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2169.37, 20200430.0, 'NAH4', 1930839399.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930737779.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 23334.87, 20200404.0, 'NAH4', 1930737779.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930723839.0, '2020-03-30', 20200331, 20200330, '2020-06-03', 'USD', 'RV', 1.0, 8006.68, 20200330.0, 'NAGD', 1930723839.0, 1, '2020-05-31', 'early' ); /* INSERT QUERY NO: 8839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930875186.0, '2020-05-06', 20200507, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 1718.07, 20200506.0, 'NAH4', 1930875186.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930597897.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 15342.67, 20200305.0, 'NAAX', 1930597897.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 8841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930805251.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 1991.84, 20200421.0, 'NAH4', 1930805251.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200790107, 'ROU systems', 2020.0, 1930808407.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 39794.41, 20200420.0, 'NAC6', 1930808407.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930705592.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 54038.59, 20200326.0, 'NAH4', 1930705592.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER systems', 2020.0, 1930797918.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 18867.92, 20200417.0, 'NAA8', 1930797918.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 8845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200783609, 'PROFIC trust', 2020.0, 1930880737.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 7281.36, 20200508.0, 'NAA8', 1930880737.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930603798.0, '2020-03-07', 20200305, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 5017.32, 20200307.0, 'NAH4', 1930603798.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST in', 2020.0, 1930729858.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 4231.34, 20200402.0, 'NAAX', 1930729858.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 8848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200697207, 'WA trust', 2020.0, 1930710744.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 57034.1, 20200328.0, 'NAA8', 1930710744.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930726778.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 10893.31, 20200403.0, 'NAH4', 1930726778.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE us', 2020.0, 1930796952.0, '2020-04-22', 20200417, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 2406.71, 20200422.0, 'NAA8', 1930796952.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930586025.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 25909.26, 20200302.0, 'NAA8', 1930586025.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930744185.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 3639.14, 20200403.0, 'NAA8', 1930744185.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY llc', 2020.0, 1930586102.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 14211.65, 20200302.0, 'NAC6', 1930586102.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930819475.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 13603.02, 20200425.0, 'NAH4', 1930819475.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE foundation', 2020.0, 1930611023.0, '2020-03-06', 20200306, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 8099.52, 20200306.0, 'NAA8', 1930611023.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930726231.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 88048.72, 20200331.0, 'NAA8', 1930726231.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 8857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930620472.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 11771.39, 20200308.0, 'NAH4', 1930620472.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200076137, 'OLLIE in', 2020.0, 1930687844.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 8390.8, 20200324.0, 'NAA8', 1930687844.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930767864.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 1578.62, 20200410.0, 'NAA8', 1930767864.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036003, 'TERR in', 2020.0, 1930608477.0, '2020-03-04', 20200305, 20200304, '2020-03-14', 'USD', 'RV', 1.0, 8853.12, 20200304.0, 'NA10', 1930608477.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 8861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200345943, 'LIPA trust', 2020.0, 1930739720.0, '2020-04-08', 20200403, 20200408, '2020-04-28', 'USD', 'RV', 1.0, 18704.06, 20200408.0, 'NAD1', 1930739720.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 8862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0, 'HEINZ corp', 2020.0, 1991841214.0, '2020-03-13', 20200313, 20200313, '2020-04-27', 'USD', 'RV', 1.0, 19334.76, 20200313.0, 'NAVF', 1991841214.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 8863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE co', 2020.0, 1930637565.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 56190.06, 20200311.0, 'NAA8', 1930637565.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930683459.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 65710.76, 20200321.0, 'NAA8', 1930683459.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930717448.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 636.73, 20200329.0, 'NAA8', 1930717448.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B trust', 2020.0, 1930708468.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 269.07, 20200328.0, 'NAA8', 1930708468.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930792317.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 62142.85, 20200415.0, 'NAA8', 1930792317.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930687105.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 15541.24, 20200322.0, 'NAH4', 1930687105.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930857836.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 13318.42, 20200505.0, 'NAA8', 1930857836.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 8870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930725725.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 2594.88, 20200331.0, 'NAU5', 1930725725.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 8871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930660841.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 21708.28, 20200318.0, 'NAH4', 1930660841.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930620415.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 8804.56, 20200308.0, 'NAH4', 1930620415.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 8873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ us', 2020.0, 1930655092.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 34274.12, 20200318.0, 'NAA8', 1930655092.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200749225, 'SUPER associates', 2020.0, 1930651675.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 58740.22, 20200314.0, 'NAA8', 1930651675.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930604659.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 61481.7, 20200304.0, 'NAC6', 1930604659.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 8876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930689347.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 13068.03, 20200324.0, 'NAAX', 1930689347.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER in', 2020.0, 1930584091.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 120695.06, 20200229.0, 'NAA8', 1930584091.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 8878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930726056.0, '2020-04-01', 20200331, 20200401, '2020-06-05', 'USD', 'RV', 1.0, 8058.89, 20200401.0, 'NAGD', 1930726056.0, 1, '2020-06-03', 'early' ); /* INSERT QUERY NO: 8879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930728176.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 42245.39, 20200402.0, 'NAH4', 1930728176.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 8880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO systems', 2020.0, 2960631404.0, '2020-04-27', 20200427, 20200427, '2020-05-15', 'CAD', 'RV', 1.0, 74730.31, 20200505.0, 'CA10', 2960631404.0, 1, '2020-05-17', '0-15 days' ); /* INSERT QUERY NO: 8881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930599003.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 44050.65, 20200304.0, 'NAH4', 1930599003.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 8882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103335, 'PARAM ', 2020.0, 1991840705.0, '2020-03-06', 20200302, 20200306, '2020-04-05', 'USD', 'RV', 1.0, 9502.71, 20200306.0, 'NAVE', 1991840705.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 8883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200486270, 'BAR in', 2020.0, 1930665048.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 10560.28, 20200318.0, 'NAA8', 1930665048.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corporation', 2020.0, 1930858024.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 3190.34, 20200501.0, 'NAM4', 1930858024.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200592182, 'DECA ', 2020.0, 1930792381.0, '2020-04-16', 20200416, 20200416, '2020-04-08', 'USD', 'RV', 1.0, 12038.6, 20200401.0, 'NAM1', 1930792381.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL corp', 2020.0, 1930729782.0, '2020-04-09', 20200401, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 55968.24, 20200409.0, 'NAA8', 1930729782.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930737052.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 61.29, 20200404.0, 'NAH4', 1930737052.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930846961.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 15866.14, 20200502.0, 'NAH4', 1930846961.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 8889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742419, 'HILLCR ', 2020.0, 1930629496.0, '2020-03-09', 20200310, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 41992.52, 20200309.0, 'NAA8', 1930629496.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 8890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD in', 2020.0, 1930738514.0, '2020-04-02', 20200402, 20200402, '2020-04-22', 'USD', 'RV', 1.0, 2169.19, 20200402.0, 'NAD1', 1930738514.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 8891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930832067.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 6673.84, 20200429.0, 'NAH4', 1930832067.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930809594.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 3163.19, 20200421.0, 'NAU5', 1930809594.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 8893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930654924.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 18741.42, 20200316.0, 'NAH4', 1930654924.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 8894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO associates', 2020.0, 2960628553.0, '2020-04-15', 20200415, 20200415, '2020-05-03', 'CAD', 'RV', 1.0, 11529.28, 20200423.0, 'CA10', 2960628553.0, 1, '2020-05-08', '0-15 days' ); /* INSERT QUERY NO: 8895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS trust', 2020.0, 1930719809.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 145986.03, 20200401.0, 'NAA8', 1930719809.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER us', 2020.0, 1930835839.0, '2020-04-28', 20200429, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 130599.47, 20200428.0, 'NAA8', 1930835839.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100053305, 'ASSE co', 2020.0, 1930701381.0, '2020-03-25', 20200325, 20200325, '2020-04-04', 'USD', 'RV', 1.0, 63378.0, 20200325.0, 'NA10', 1930701381.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ corporation', 2020.0, 1930876622.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 100918.49, 20200507.0, 'NAA8', 1930876622.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE llc', 2020.0, 1930718136.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 61928.77, 20200330.0, 'NAA8', 1930718136.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 8900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930585261.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 35891.75, 20200301.0, 'NAH4', 1930585261.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106181, 'THE us', 2020.0, 2960617892.0, '2020-03-04', 20200304, 20200304, '2020-03-16', 'CAD', 'RV', 1.0, 17116.32, 20200306.0, 'CA10', 2960617892.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 8902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930778226.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 54737.62, 20200412.0, 'NAC6', 1930778226.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930670252.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 9586.54, 20200319.0, 'NAH4', 1930670252.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930862433.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 661.11, 20200507.0, 'NAH4', 1930862433.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 8905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930647178.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 3287.94, 20200313.0, 'NAU5', 1930647178.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930800469.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 16088.23, 20200418.0, 'NAA8', 1930800469.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 8907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN llc', 2020.0, 1930652063.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 8197.8, 20200316.0, 'NAA8', 1930652063.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 8908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930597499.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 643.49, 20200303.0, 'NAA8', 1930597499.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930725523.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 14118.31, 20200402.0, 'NAH4', 1930725523.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 8910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930801217.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 39101.99, 20200418.0, 'NAU5', 1930801217.0, 1, '2020-05-04', '0-15 days' ); /* INSERT QUERY NO: 8911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930763961.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 50699.15, 20200408.0, 'NAH4', 1930763961.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 8912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930801192.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 3228.13, 20200419.0, 'NAH4', 1930801192.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 8913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930824572.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 841.56, 20200424.0, 'NAU5', 1930824572.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 8914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA associates', 2020.0, 1930690510.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 19330.49, 20200316.0, 'NAM4', 1930690510.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER co', 2020.0, 1930604544.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 82536.09, 20200304.0, 'NAA8', 1930604544.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930593456.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 1898.9, 20200304.0, 'NAH4', 1930593456.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 8917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930621647.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 20290.04, 20200309.0, 'NAC6', 1930621647.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 8918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU llc', 2020.0, 1930682973.0, '2020-03-20', 20200321, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 92351.97, 20200320.0, 'NAA8', 1930682973.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 8919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960617313.0, '2020-03-01', 20200301, 20200301, '2020-03-11', 'CAD', 'RV', 1.0, 5582.28, 20200301.0, 'CA10', 2960617313.0, 1, '2020-03-16', '0-15 days' ); /* INSERT QUERY NO: 8920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930648404.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 4272.86, 20200313.0, 'NAH4', 1930648404.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140106408, 'WAL-M co', 2020.0, 2960624585.0, '2020-04-10', 20200410, 20200410, '2020-04-20', 'CAD', 'RV', 1.0, 89735.21, 20200410.0, 'CA10', 2960624585.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 8922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930594037.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 89938.32, 20200303.0, 'NAA8', 1930594037.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200875680, 'MINERS ', 2020.0, 1930911111.0, '2020-05-18', 20200516, 20200518, '2020-06-02', 'USD', 'RV', 1.0, 119248.83, 20200518.0, 'NAA8', 1930911111.0, 1, '2020-05-31', 'early' ); /* INSERT QUERY NO: 8924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA in', 2020.0, 1930817623.0, '2020-04-23', 20200423, 20200423, '2020-04-26', 'USD', 'RV', 1.0, 577.9, 20200416.0, 'NAM2', 1930817623.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 8925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930861631.0, '2020-05-06', 20200506, 20200506, '2020-05-24', 'USD', 'RV', 1.0, 1304.68, 20200501.0, 'NAM4', 1930861631.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200776463, 'KROGE trust', 2020.0, 1930674567.0, '2020-03-19', 20200320, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 17606.71, 20200319.0, 'NAA8', 1930674567.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930799337.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 133320.01, 20200420.0, 'NAH4', 1930799337.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930752903.0, '2020-04-05', 20200406, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 99.19, 20200405.0, 'NAA8', 1930752903.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 8929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ in', 2020.0, 1930758176.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 142797.41, 20200408.0, 'NAA8', 1930758176.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 8930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200737918, 'W LEE systems', 2020.0, 1930801719.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 97473.07, 20200420.0, 'NAA8', 1930801719.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 8931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200833713, 'JETRO associates', 2020.0, 1930669178.0, '2020-03-18', 20200318, 20200318, '2020-04-07', 'USD', 'RV', 1.0, 6415.52, 20200318.0, 'NAD1', 1930669178.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 8932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930738022.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 32371.98, 20200403.0, 'NAH4', 1930738022.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG co', 2020.0, 1930645877.0, '2020-03-17', 20200312, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 18379.2, 20200317.0, 'NAA8', 1930645877.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 8934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC systems', 2020.0, 2960627643.0, '2020-04-12', 20200412, 20200412, '2020-04-24', 'CAD', 'RV', 1.0, 15884.61, 20200414.0, 'CA10', 2960627643.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 8935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC in', 2020.0, 1930575580.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 1424.6, 20200228.0, 'NAA8', 1930575580.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 8936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE corp', 2020.0, 1930661202.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 21379.84, 20200318.0, 'NAA8', 1930661202.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 8937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960625879.0, '2020-04-04', 20200404, 20200404, '2020-04-23', 'CAD', 'RV', 1.0, 124387.47, 20200413.0, 'CA10', 2960625879.0, 1, '2020-04-28', '0-15 days' ); /* INSERT QUERY NO: 8938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930857335.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 7756.42, 20200505.0, 'NAH4', 1930857335.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 8939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930605908.0, '2020-03-04', 20200305, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 17760.21, 20200304.0, 'NAA8', 1930605908.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS corp', 2020.0, 1930819864.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 85718.92, 20200425.0, 'NAA8', 1930819864.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930580163.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 43011.53, 20200228.0, 'NAH4', 1930580163.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC us', 2020.0, 2960624514.0, '2020-03-26', 20200326, 20200326, '2020-04-12', 'CAD', 'RV', 1.0, 1357.63, 20200402.0, 'CA10', 2960624514.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 8943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR foundation', 2020.0, 1930881324.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 11845.57, 20200509.0, 'NAH4', 1930881324.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 8944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST foundation', 2020.0, 1930860051.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 17076.55, 20200505.0, 'NAAX', 1930860051.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 8945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C associates', 2020.0, 1930686765.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 21713.84, 20200324.0, 'NAA8', 1930686765.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG associates', 2020.0, 1930600165.0, '2020-03-04', 20200304, 20200304, '2020-05-08', 'USD', 'RV', 1.0, 9731.07, 20200304.0, 'NAGD', 1930600165.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 8947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM systems', 2020.0, 1930835485.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 2818.5, 20200504.0, 'NAA8', 1930835485.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 8948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA corp', 2020.0, 1930839766.0, '2020-05-03', 20200504, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 13976.96, 20200503.0, 'NAH4', 1930839766.0, 1, '2020-05-19', '0-15 days' ); /* INSERT QUERY NO: 8949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR trust', 2020.0, 1930681385.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 1017.41, 20200322.0, 'NAH4', 1930681385.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930658297.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 34675.97, 20200317.0, 'NAAX', 1930658297.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 8951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930578694.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 21727.98, 20200228.0, 'NAA8', 1930578694.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 8952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930834410.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 29498.9, 20200429.0, 'NAH4', 1930834410.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 8953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL trust', 2020.0, 1930795621.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 41828.85, 20200417.0, 'NAA8', 1930795621.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930566813.0, '2020-02-27', 20200225, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 50442.28, 20200227.0, 'NAAX', 1930566813.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 8955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930794693.0, '2020-04-14', 20200416, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 103681.02, 20200414.0, 'NAU5', 1930794693.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030014, 'BASIX corp', 2020.0, 1930666495.0, '2020-03-18', 20200318, 20200318, '2020-04-07', 'USD', 'RV', 1.0, 80839.0, 20200318.0, 'NAD1', 1930666495.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 8957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN foundation', 2020.0, 1930715742.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 19611.06, 20200328.0, 'NAA8', 1930715742.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200776463, 'KROGE corporation', 2020.0, 1930877513.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 119985.35, 20200507.0, 'NAA8', 1930877513.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 8959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104440, 'SO in', 2020.0, 2960630262.0, '2020-04-23', 20200423, 20200423, '2020-05-04', 'CAD', 'RV', 1.0, 112353.94, 20200424.0, 'CA10', 2960630262.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 8960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930685126.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 9802.64, 20200323.0, 'NAH4', 1930685126.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 8961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030964, 'NATURA ', 2020.0, 1930597750.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 12067.25, 20200305.0, 'NAA8', 1930597750.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200754278, 'MBM co', 2020.0, 1930790921.0, '2020-04-17', 20200415, 20200417, '2020-05-07', 'USD', 'RV', 1.0, 1316.8, 20200417.0, 'NAD1', 1930790921.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 8963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC in', 2020.0, 1930672049.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 8053.02, 20200316.0, 'NAM2', 1930672049.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 8964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT co', 2020.0, 1930730761.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 40262.83, 20200402.0, 'NAU5', 1930730761.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 8965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE us', 2020.0, 1930703335.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 62544.74, 20200325.0, 'NAA8', 1930703335.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930678881.0, '2020-03-24', 20200320, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 6822.24, 20200324.0, 'NAH4', 1930678881.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY corporation', 2020.0, 1930585916.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 15046.03, 20200302.0, 'NAC6', 1930585916.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 8968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE us', 2020.0, 1930813442.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 140903.6, 20200424.0, 'NAA8', 1930813442.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930620173.0, '2020-03-09', 20200307, 20200309, '2020-05-13', 'USD', 'RV', 1.0, 1648.98, 20200309.0, 'NAGD', 1930620173.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC us', 2020.0, 1930819185.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 2923.46, 20200416.0, 'NAM4', 1930819185.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930858359.0, '2020-05-05', 20200505, 20200505, '2020-05-24', 'USD', 'RV', 1.0, 467.28, 20200501.0, 'NAM4', 1930858359.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200555117, 'BURR corp', 2020.0, 1930856309.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 105287.52, 20200505.0, 'NAA8', 1930856309.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 8973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036292, 'AMY foundation', 2020.0, 1930610007.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 19801.12, 20200305.0, 'NAA8', 1930610007.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 8974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL corporation', 2020.0, 1930655430.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 54168.11, 20200316.0, 'NAA8', 1930655430.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 8975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA corporation', 2020.0, 1930876900.0, '2020-05-07', 20200507, 20200507, '2020-05-24', 'USD', 'RV', 1.0, 2972.62, 20200501.0, 'NAM4', 1930876900.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930876749.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 9287.44, 20200508.0, 'NAH4', 1930876749.0, 1, '2020-05-24', '0-15 days' ); /* INSERT QUERY NO: 8977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930747223.0, '2020-04-03', 20200404, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 1898.9, 20200403.0, 'NAH4', 1930747223.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 8978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930684686.0, '2020-03-23', 20200322, 20200323, '2020-05-27', 'USD', 'RV', 1.0, 103010.31, 20200323.0, 'NAGD', 1930684686.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 8979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930681157.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 458.71, 20200322.0, 'NAC6', 1930681157.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 8980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200886415, 'COSTCO co', 2020.0, 1930711265.0, '2020-03-31', 20200328, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 23643.9, 20200331.0, 'NAA8', 1930711265.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930571118.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 26433.03, 20200227.0, 'NAH4', 1930571118.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 8982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930826157.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 20545.35, 20200427.0, 'NAH4', 1930826157.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 8983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930824583.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 8619.82, 20200425.0, 'NAA8', 1930824583.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG corp', 2020.0, 1930705186.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 82324.88, 20200325.0, 'NAA8', 1930705186.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 8985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930599213.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 14051.32, 20200305.0, 'NAC6', 1930599213.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 8986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930821924.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 780.73, 20200424.0, 'NAH4', 1930821924.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK co', 2020.0, 1930717694.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 88375.26, 20200329.0, 'NAA8', 1930717694.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 8988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW foundation', 2020.0, 1930766849.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 9111.6, 20200410.0, 'NAA8', 1930766849.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 8989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR in', 2020.0, 1930877793.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 50741.76, 20200509.0, 'NAH4', 1930877793.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 8990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930627235.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 45677.4, 20200310.0, 'NAA8', 1930627235.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 8991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930776719.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 28630.09, 20200411.0, 'NAH4', 1930776719.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 8992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200434439, 'BAUGH SU corp', 2020.0, 1930597496.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 41049.8, 20200303.0, 'NAA8', 1930597496.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 8993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER co', 2020.0, 1930733766.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 120098.69, 20200402.0, 'NAA8', 1930733766.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 8994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930786420.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 40417.83, 20200415.0, 'NAH4', 1930786420.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 8995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200455322, 'PEA co', 2020.0, 1930753166.0, '2020-04-08', 20200406, 20200408, '2020-05-08', 'USD', 'RV', 1.0, 50555.87, 20200408.0, 'NAD5', 1930753166.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 8996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corporation', 2020.0, 1930881098.0, '2020-05-09', 20200509, 20200509, '2020-05-11', 'USD', 'RV', 1.0, 14824.26, 20200501.0, 'NAM2', 1930881098.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930717767.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 17165.2, 20200329.0, 'NAH4', 1930717767.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 8998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930597373.0, '2020-03-06', 20200304, 20200306, '2020-05-10', 'USD', 'RV', 1.0, 3191.4, 20200306.0, 'NAGD', 1930597373.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 8999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR foundation', 2020.0, 2960633622.0, '2020-05-07', 20200507, 20200507, '2020-05-17', 'CAD', 'RV', 1.0, 1030.77, 20200507.0, 'CA10', 2960633622.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 9000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930710423.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 4005.39, 20200327.0, 'NAA8', 1930710423.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9001 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930582045.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 50414.99, 20200228.0, 'NAH4', 1930582045.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 9002 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930647564.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 52545.8, 20200314.0, 'NAA8', 1930647564.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9003 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930690243.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 13243.96, 20200325.0, 'NAH4', 1930690243.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9004 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO foundation', 2020.0, 1930598828.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 3288.09, 20200305.0, 'NAA8', 1930598828.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 9005 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930854958.0, '2020-05-05', 20200503, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 8949.7, 20200505.0, 'NAH4', 1930854958.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9006 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930676113.0, '2020-03-23', 20200320, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 23234.41, 20200323.0, 'NAC6', 1930676113.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9007 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE us', 2020.0, 1930861663.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 96333.15, 20200507.0, 'NAA8', 1930861663.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 9008 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930842141.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 50012.07, 20200502.0, 'NAH4', 1930842141.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9009 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC llc', 2020.0, 1930788939.0, '2020-04-15', 20200415, 20200415, '2020-04-08', 'USD', 'RV', 1.0, 19618.82, 20200401.0, 'NAM1', 1930788939.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9010 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C associates', 2020.0, 1930686765.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 21713.84, 20200324.0, 'NAA8', 1930686765.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9011 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930752278.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 38.95, 20200406.0, 'NAH4', 1930752278.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9012 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRFT FDS llc', 2020.0, 1930693255.0, '2020-03-28', 20200324, 20200328, '2020-05-02', 'USD', 'RV', 1.0, 48236.16, 20200328.0, 'NAG2', 1930693255.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9013 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M corporation', 2020.0, 1930739564.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 14261.99, 20200403.0, 'NAA8', 1930739564.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 9014 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930747341.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 59764.98, 20200404.0, 'NAH4', 1930747341.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9015 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930811089.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 25054.24, 20200422.0, 'NAH4', 1930811089.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9016 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F associates', 2020.0, 1930671645.0, '2020-03-21', 20200319, 20200321, '2020-03-21', 'USD', 'RV', 1.0, 13872.0, 20200321.0, 'NAX2', 1930671645.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 9017 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO in', 2020.0, 2960628970.0, '2020-04-17', 20200417, 20200417, '2020-04-28', 'CAD', 'RV', 1.0, 68953.61, 20200418.0, 'CA10', 2960628970.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 9018 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930582697.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 2541.14, 20200229.0, 'NAH4', 1930582697.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9019 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO systems', 2020.0, 2960627436.0, '2020-04-08', 20200408, 20200408, '2020-04-18', 'CAD', 'RV', 1.0, 57822.98, 20200408.0, 'CA10', 2960627436.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 9020 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST co', 2020.0, 1930691885.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 14772.55, 20200326.0, 'NAAX', 1930691885.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9021 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930614056.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 533.1, 20200301.0, 'NAM4', 1930614056.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9022 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100044010, 'LAND co', 2020.0, 1930797015.0, '2020-04-16', 20200416, 20200416, '2020-03-31', 'USD', 'RV', 1.0, 46490.22, 20200228.0, 'NA32', 1930797015.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9023 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & corporation', 2020.0, 1930597546.0, '2020-03-03', 20200304, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 79582.23, 20200303.0, 'NAA8', 1930597546.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9024 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ foundation', 2020.0, 1930829976.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 2623.1, 20200428.0, 'NAA8', 1930829976.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9025 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT foundation', 2020.0, 1930783800.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 36279.71, 20200414.0, 'NAA8', 1930783800.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 9026 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930856358.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 26423.42, 20200506.0, 'NAH4', 1930856358.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9027 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930659122.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 23847.52, 20200316.0, 'NAA8', 1930659122.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9028 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930685101.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 131136.94, 20200321.0, 'NAC6', 1930685101.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9029 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930636796.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 67761.61, 20200313.0, 'NAH4', 1930636796.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 9030 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA systems', 2020.0, 1930617967.0, '2020-03-06', 20200307, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 10116.1, 20200306.0, 'NAA8', 1930617967.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9031 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930610894.0, '2020-03-09', 20200306, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 25665.15, 20200309.0, 'NAH4', 1930610894.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9032 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930670001.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 58861.83, 20200318.0, 'NAA8', 1930670001.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9033 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER ', 2020.0, 1930585353.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 78453.96, 20200302.0, 'NAA8', 1930585353.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 9034 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712187, 'SPAR foundation', 2020.0, 1930769646.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 68938.1, 20200409.0, 'NAA8', 1930769646.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9035 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET ', 2020.0, 1930838290.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 2851.83, 20200430.0, 'NAA8', 1930838290.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9036 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930635819.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 7912.29, 20200310.0, 'NAA8', 1930635819.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9037 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930603128.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 20864.99, 20200304.0, 'NAAX', 1930603128.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9038 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718164, 'JC F corporation', 2020.0, 1930832557.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 17519.05, 20200429.0, 'NAA8', 1930832557.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9039 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930572462.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 362.81, 20200227.0, 'NAA8', 1930572462.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 9040 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930690543.0, '2020-03-23', 20200324, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 121125.44, 20200323.0, 'NAA8', 1930690543.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9041 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930852846.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 9677.02, 20200503.0, 'NAH4', 1930852846.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9042 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930686682.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 13438.91, 20200323.0, 'NAH4', 1930686682.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9043 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930737191.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 11962.51, 20200404.0, 'NAH4', 1930737191.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9044 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960618895.0, '2020-03-10', 20200310, 20200310, '2020-03-23', 'CAD', 'RV', 1.0, 100493.49, 20200313.0, 'CA10', 2960618895.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 9045 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930846701.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 15877.25, 20200503.0, 'NAH4', 1930846701.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9046 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930665923.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 4300.16, 20200317.0, 'NAH4', 1930665923.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9047 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930759953.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 4428.62, 20200408.0, 'NAH4', 1930759953.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9048 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC foundation', 2020.0, 1930600150.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 7119.17, 20200301.0, 'NAM4', 1930600150.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9049 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799342, 'MITCH corporation', 2020.0, 1930877417.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 68978.99, 20200508.0, 'NAA8', 1930877417.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9050 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930813324.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 36118.72, 20200421.0, 'NAC6', 1930813324.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9051 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corporation', 2020.0, 1930669399.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 2823.09, 20200316.0, 'NAM4', 1930669399.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9052 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200358522, 'SILVE co', 2020.0, 1930844275.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 1010.28, 20200430.0, 'NAA8', 1930844275.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9053 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930845080.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 37373.7, 20200501.0, 'NAH4', 1930845080.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9054 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA llc', 2020.0, 1930813517.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 16316.78, 20200422.0, 'NAA8', 1930813517.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9055 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB trust', 2020.0, 2960621171.0, '2020-03-18', 20200318, 20200318, '2020-04-06', 'CAD', 'RV', 1.0, 90353.6, 20200327.0, 'CA10', 2960621171.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 9056 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930647342.0, '2020-03-17', 20200313, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 3904.07, 20200317.0, 'NAA8', 1930647342.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 9057 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930789170.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 31699.87, 20200415.0, 'NAA8', 1930789170.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9058 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET foundation', 2020.0, 1930857776.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 7784.32, 20200506.0, 'NAA8', 1930857776.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9059 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC ', 2020.0, 1930599437.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 66.48, 20200301.0, 'NAM4', 1930599437.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9060 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793122, 'PIGGLY trust', 2020.0, 1930837908.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 77749.34, 20200429.0, 'NAA8', 1930837908.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 9061 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB corporation', 2020.0, 2960631415.0, '2020-04-27', 20200427, 20200427, '2020-05-11', 'CAD', 'RV', 1.0, 24561.48, 20200501.0, 'CA10', 2960631415.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 9062 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930796672.0, '2020-04-16', 20200417, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 24884.26, 20200416.0, 'NAU5', 1930796672.0, 1, '2020-05-02', '0-15 days' ); /* INSERT QUERY NO: 9063 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI llc', 2020.0, 1930686228.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 115760.36, 20200322.0, 'NAA8', 1930686228.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9064 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200756072, 'REINHA systems', 2020.0, 1930782320.0, '2020-04-15', 20200413, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 16704.0, 20200415.0, 'NAA8', 1930782320.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 9065 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corp', 2020.0, 1930819192.0, '2020-04-23', 20200423, 20200423, '2020-04-23', 'USD', 'RV', 1.0, 8351.26, 20200416.0, 'NAM1', 1930819192.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9066 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930790893.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 14181.53, 20200416.0, 'NAH4', 1930790893.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9067 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER llc', 2020.0, 1930660304.0, '2020-03-16', 20200317, 20200316, '2020-05-20', 'USD', 'RV', 1.0, 3826.03, 20200316.0, 'NAGD', 1930660304.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9068 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930824683.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 44958.11, 20200426.0, 'NAA8', 1930824683.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9069 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930673702.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 82117.44, 20200319.0, 'NAA8', 1930673702.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9070 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH associates', 2020.0, 1930686101.0, '2020-03-23', 20200322, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 81859.78, 20200323.0, 'NAA8', 1930686101.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9071 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200721222, 'GO corporation', 2020.0, 1930706524.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 95980.43, 20200326.0, 'NAA8', 1930706524.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9072 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200934569, 'SODEXHO foundation', 2020.0, 1930593946.0, '2020-03-06', 20200303, 20200306, '2020-04-10', 'USD', 'RV', 1.0, 196.94, 20200306.0, 'NAG2', 1930593946.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9073 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930848463.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 19232.61, 20200504.0, 'NAA8', 1930848463.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 9074 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI systems', 2020.0, 1930637985.0, '2020-03-13', 20200311, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 82027.57, 20200313.0, 'NAA8', 1930637985.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9075 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH associates', 2020.0, 1930592722.0, '2020-03-02', 20200302, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 41469.81, 20200302.0, 'NAA8', 1930592722.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9076 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930797304.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 1694.37, 20200417.0, 'NAH4', 1930797304.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9077 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE llc', 2020.0, 1930719532.0, '2020-03-29', 20200330, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 65919.5, 20200329.0, 'NAA8', 1930719532.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9078 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930598525.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 3569.59, 20200304.0, 'NAH4', 1930598525.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 9079 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960631944.0, '2020-04-30', 20200430, 20200430, '2020-05-11', 'CAD', 'RV', 1.0, 54142.6, 20200501.0, 'CA10', 2960631944.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 9080 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930727379.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 11765.31, 20200402.0, 'NAH4', 1930727379.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9081 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200881076, 'ALBERT foundation', 2020.0, 1930652965.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 82497.11, 20200316.0, 'NAA8', 1930652965.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 9082 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930856063.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 2546.95, 20200506.0, 'NAH4', 1930856063.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9083 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930653418.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 23082.54, 20200314.0, 'NAH4', 1930653418.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9084 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930783317.0, '2020-04-15', 20200414, 20200415, '2020-06-19', 'USD', 'RV', 1.0, 2799.63, 20200415.0, 'NAGD', 1930783317.0, 1, '2020-06-15', 'early' ); /* INSERT QUERY NO: 9085 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930635464.0, '2020-03-15', 20200311, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 70222.93, 20200315.0, 'NAH4', 1930635464.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9086 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930732971.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 17193.7, 20200403.0, 'NAH4', 1930732971.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9087 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930730274.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 40455.53, 20200402.0, 'NAAX', 1930730274.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 9088 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE us', 2020.0, 1930655744.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 78200.85, 20200317.0, 'NAA8', 1930655744.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 9089 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S trust', 2020.0, 1930648351.0, '2020-03-16', 20200314, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 43180.61, 20200316.0, 'NAA8', 1930648351.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9090 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930681366.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 471.56, 20200321.0, 'NAH4', 1930681366.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9091 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200974851, 'RESTA foundation', 2020.0, 1930662498.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 7225.05, 20200317.0, 'NAA8', 1930662498.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9092 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST corp', 2020.0, 1930659791.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 68867.63, 20200319.0, 'NAAX', 1930659791.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9093 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR corporation', 2020.0, 1930653309.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 25639.74, 20200315.0, 'NAA8', 1930653309.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9094 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN in', 2020.0, 1930709670.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 34795.2, 20200330.0, 'NAA8', 1930709670.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9095 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960628538.0, '2020-04-15', 20200415, 20200415, '2020-04-27', 'CAD', 'RV', 1.0, 2545.09, 20200417.0, 'CA10', 2960628538.0, 1, '2020-05-01', '0-15 days' ); /* INSERT QUERY NO: 9096 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930657259.0, '2020-03-17', 20200316, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 21461.7, 20200317.0, 'NAH4', 1930657259.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9097 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930594072.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 73743.65, 20200303.0, 'NAAX', 1930594072.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 9098 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S systems', 2020.0, 1930604247.0, '2020-03-11', 20200305, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 3030.08, 20200311.0, 'NAA8', 1930604247.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9099 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200580232, 'INTERR corporation', 2020.0, 1930700209.0, '2020-03-25', 20200325, 20200325, '2020-04-04', 'USD', 'RV', 1.0, 35661.5, 20200325.0, 'NA10', 1930700209.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9100 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200706844, 'WINC trust', 2020.0, 1930670860.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 8929.14, 20200320.0, 'NAA8', 1930670860.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9101 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200700919, 'US in', 2020.0, 1930756615.0, '2020-04-08', 20200406, 20200408, '2020-05-10', 'USD', 'RV', 1.0, 63176.88, 20200408.0, 'NA32', 1930756615.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9102 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930729455.0, '2020-04-03', 20200401, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 13718.02, 20200403.0, 'NAH4', 1930729455.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9103 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN systems', 2020.0, 1930690874.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 14890.8, 20200324.0, 'NAA8', 1930690874.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9104 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930801634.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 57181.01, 20200420.0, 'NAA8', 1930801634.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 9105 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930782563.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 38356.89, 20200414.0, 'NAH4', 1930782563.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9106 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT corporation', 2020.0, 1930823652.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 75662.64, 20200424.0, 'NAU5', 1930823652.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9107 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930696150.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 661.11, 20200327.0, 'NAH4', 1930696150.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9108 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F foundation', 2020.0, 1930596709.0, '2020-03-07', 20200303, 20200307, '2020-03-07', 'USD', 'RV', 1.0, 83837.26, 20200307.0, 'NAX2', 1930596709.0, 1, '2020-03-13', '0-15 days' ); /* INSERT QUERY NO: 9109 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT foundation', 2020.0, 1930854992.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 5161.35, 20200504.0, 'NAU5', 1930854992.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 9110 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930699402.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 25303.45, 20200325.0, 'NAA8', 1930699402.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9111 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732755, 'KROGER foundation', 2020.0, 1930653872.0, '2020-03-16', 20200315, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 50367.71, 20200316.0, 'NAA8', 1930653872.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9112 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200555117, 'BURR ', 2020.0, 1930749317.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 119061.11, 20200405.0, 'NAA8', 1930749317.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9113 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104472, 'MARTIN corp', 2020.0, 2960626309.0, '2020-04-02', 20200402, 20200402, '2020-04-14', 'CAD', 'RV', 1.0, 27946.8, 20200404.0, 'CA10', 2960626309.0, 1, '2020-04-19', '0-15 days' ); /* INSERT QUERY NO: 9114 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930674196.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 55.21, 20200320.0, 'NAA8', 1930674196.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9115 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930683619.0, '2020-03-26', 20200321, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 30695.6, 20200326.0, 'NAH4', 1930683619.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9116 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS in', 2020.0, 1930679040.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 130139.75, 20200321.0, 'NAA8', 1930679040.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 9117 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930749139.0, '2020-04-07', 20200404, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 19943.64, 20200407.0, 'NAC6', 1930749139.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9118 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930745002.0, '2020-04-06', 20200403, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 15512.01, 20200406.0, 'NAH4', 1930745002.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9119 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930585638.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 542.11, 20200301.0, 'NAH4', 1930585638.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9120 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930677253.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 58671.31, 20200322.0, 'NAA8', 1930677253.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9121 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930782711.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 14761.84, 20200414.0, 'NAH4', 1930782711.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9122 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930861191.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 12715.89, 20200507.0, 'NAH4', 1930861191.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 9123 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR us', 2020.0, 1930692474.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 19217.11, 20200324.0, 'NAA8', 1930692474.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9124 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST us', 2020.0, 1930870763.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 51098.78, 20200508.0, 'NAAX', 1930870763.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 9125 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC foundation', 2020.0, 2960623653.0, '2020-03-26', 20200326, 20200326, '2020-04-07', 'CAD', 'RV', 1.0, 3717.4, 20200328.0, 'CA10', 2960623653.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 9126 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW trust', 2020.0, 1930789776.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 55967.94, 20200414.0, 'NAA8', 1930789776.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9127 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726025, 'MARTI foundation', 2020.0, 1930628048.0, '2020-03-09', 20200310, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 28889.39, 20200309.0, 'NAA8', 1930628048.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9128 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930670147.0, '2020-03-20', 20200318, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 4545.4, 20200320.0, 'NAAX', 1930670147.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9129 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930782958.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 8058.94, 20200415.0, 'NAH4', 1930782958.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9130 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930708218.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 30183.19, 20200327.0, 'NAH4', 1930708218.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9131 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F foundation', 2020.0, 2960630427.0, '2020-04-22', 20200422, 20200422, '2020-05-10', 'CAD', 'RV', 1.0, 19904.24, 20200430.0, 'CA10', 2960630427.0, 1, '2020-05-16', '0-15 days' ); /* INSERT QUERY NO: 9132 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930621216.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 9527.74, 20200308.0, 'NAH4', 1930621216.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9133 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI co', 2020.0, 1930663805.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 138521.85, 20200318.0, 'NAA8', 1930663805.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9134 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL corporation', 2020.0, 1930560846.0, '2020-02-27', 20200224, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 41227.99, 20200227.0, 'NAA8', 1930560846.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 9135 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO associates', 2020.0, 2960631412.0, '2020-04-27', 20200427, 20200427, '2020-05-10', 'CAD', 'RV', 1.0, 48258.02, 20200430.0, 'CA10', 2960631412.0, 1, '2020-05-15', '0-15 days' ); /* INSERT QUERY NO: 9136 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200126819, 'MCLANE ', 2020.0, 1930783936.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 13130.47, 20200415.0, 'NAA8', 1930783936.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9137 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC co', 2020.0, 1930781190.0, '2020-04-13', 20200413, 20200413, '2020-04-24', 'USD', 'RV', 1.0, 747.36, 20200401.0, 'NAM4', 1930781190.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9138 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930582924.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 28862.98, 20200302.0, 'NAH4', 1930582924.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9139 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930827940.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 49032.48, 20200427.0, 'NAA8', 1930827940.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9140 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU corp', 2020.0, 1930811039.0, '2020-04-21', 20200422, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 94241.91, 20200421.0, 'NAA8', 1930811039.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9141 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930827060.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 48319.9, 20200427.0, 'NAH4', 1930827060.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 9142 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930729637.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 16188.25, 20200401.0, 'NAC6', 1930729637.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9143 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930580050.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 1898.2, 20200302.0, 'NAH4', 1930580050.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9144 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC ', 2020.0, 2960616963.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'CAD', 'RV', 1.0, 24224.08, 20200305.0, 'CA10', 2960616963.0, 1, '2020-03-16', '0-15 days' ); /* INSERT QUERY NO: 9145 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930782090.0, '2020-04-10', 20200414, 20200410, '2020-06-14', 'USD', 'RV', 1.0, 6322.18, 20200410.0, 'NAGD', 1930782090.0, 1, '2020-06-11', 'early' ); /* INSERT QUERY NO: 9146 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930823999.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 3655.31, 20200426.0, 'NAH4', 1930823999.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9147 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930777844.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 771.58, 20200411.0, 'NAU5', 1930777844.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 9148 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200782001, 'GORDO systems', 2020.0, 1930593528.0, '2020-03-03', 20200303, 20200303, '2020-04-04', 'USD', 'RV', 1.0, 15893.82, 20200303.0, 'NA32', 1930593528.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9149 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930726773.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 63000.97, 20200402.0, 'NAH4', 1930726773.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9150 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200781803, 'JRD systems', 2020.0, 1930682775.0, '2020-03-20', 20200321, 20200320, '2020-04-09', 'USD', 'RV', 1.0, 2685.74, 20200320.0, 'NAD1', 1930682775.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9151 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE in', 2020.0, 1930831643.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 83702.55, 20200428.0, 'NAA8', 1930831643.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9152 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU trust', 2020.0, 1930810352.0, '2020-04-27', 20200421, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 9022.11, 20200427.0, 'NAA8', 1930810352.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 9153 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592075, 'HERS corp', 2020.0, 1930788606.0, '2020-04-14', 20200415, 20200414, '2020-04-24', 'USD', 'RV', 1.0, 7314.0, 20200414.0, 'NA10', 1930788606.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9154 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930782309.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 10510.02, 20200414.0, 'NAH4', 1930782309.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9155 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corp', 2020.0, 1930827766.0, '2020-04-26', 20200426, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 99900.51, 20200426.0, 'NAC6', 1930827766.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9156 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200774000, 'RALEY corp', 2020.0, 1930818677.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 58458.41, 20200423.0, 'NAA8', 1930818677.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9157 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY in', 2020.0, 1930660451.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 78067.4, 20200317.0, 'NAC6', 1930660451.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 9158 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT co', 2020.0, 1930684504.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 16384.13, 20200323.0, 'NAA8', 1930684504.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9159 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930752933.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 2874.38, 20200407.0, 'NAAX', 1930752933.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9160 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930678559.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 47486.76, 20200320.0, 'NAH4', 1930678559.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9161 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200029010, 'KROG corp', 2020.0, 1930833845.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 167620.1, 20200428.0, 'NAA8', 1930833845.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9162 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930602978.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 12.96, 20200301.0, 'NAM4', 1930602978.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9163 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769369, 'DI trust', 2020.0, 1930858193.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 34939.66, 20200506.0, 'NAA8', 1930858193.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 9164 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930802424.0, '2020-04-22', 20200420, 20200422, '2020-06-26', 'USD', 'RV', 1.0, 4603.2, 20200422.0, 'NAGD', 1930802424.0, 1, '2020-06-21', 'early' ); /* INSERT QUERY NO: 9165 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT llc', 2020.0, 1930570470.0, '2020-02-27', 20200226, 20200227, '2020-04-02', 'USD', 'RV', 1.0, 14178.24, 20200227.0, 'NAG2', 1930570470.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 9166 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200762301, 'C&S WH trust', 2020.0, 1930856589.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 15624.33, 20200505.0, 'NAC6', 1930856589.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 9167 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930654646.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 53261.57, 20200316.0, 'NAA8', 1930654646.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 9168 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN trust', 2020.0, 1930667553.0, '2020-03-25', 20200318, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 3203.64, 20200325.0, 'NAA8', 1930667553.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9169 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930786370.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 18393.16, 20200416.0, 'NAH4', 1930786370.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9170 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930614063.0, '2020-03-07', 20200307, 20200307, '2020-03-11', 'USD', 'RV', 1.0, 1659.23, 20200301.0, 'NAM2', 1930614063.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 9171 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759082, 'INGL associates', 2020.0, 1930643637.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 80998.34, 20200312.0, 'NAA8', 1930643637.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9172 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA llc', 2020.0, 1930848111.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 69359.9, 20200502.0, 'NAH4', 1930848111.0, 1, '2020-05-18', '0-15 days' ); /* INSERT QUERY NO: 9173 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763814, 'SYSCO F corp', 2020.0, 1930681904.0, '2020-03-26', 20200320, 20200326, '2020-04-15', 'USD', 'RV', 1.0, 13100.97, 20200326.0, 'NAD1', 1930681904.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9174 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930811880.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 46789.05, 20200423.0, 'NAC6', 1930811880.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9175 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200756072, 'REINHA ', 2020.0, 1930844736.0, '2020-05-01', 20200430, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 43821.03, 20200501.0, 'NAA8', 1930844736.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 9176 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930784759.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 1164.87, 20200415.0, 'NAH4', 1930784759.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9177 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930621768.0, '2020-03-10', 20200308, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 1898.9, 20200310.0, 'NAH4', 1930621768.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 9178 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930623688.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 31740.46, 20200311.0, 'NAH4', 1930623688.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9179 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930778035.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 11125.44, 20200412.0, 'NAH4', 1930778035.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9180 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200920735, 'ALBERT associates', 2020.0, 1930606631.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 99071.6, 20200306.0, 'NAA8', 1930606631.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 9181 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930823758.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 2761.75, 20200425.0, 'NAA8', 1930823758.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9182 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792293, 'UNIFIE co', 2020.0, 1930856664.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 24206.42, 20200504.0, 'NAA8', 1930856664.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9183 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930779223.0, '2020-04-15', 20200411, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 15027.12, 20200415.0, 'NAH4', 1930779223.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9184 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930624966.0, '2020-03-08', 20200309, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 10844.96, 20200308.0, 'NAH4', 1930624966.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9185 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930606929.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 497.91, 20200306.0, 'NAA8', 1930606929.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9186 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930719732.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 867.02, 20200330.0, 'NAH4', 1930719732.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9187 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930806456.0, '2020-04-20', 20200421, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 20732.8, 20200420.0, 'NAU5', 1930806456.0, 1, '2020-05-06', '0-15 days' ); /* INSERT QUERY NO: 9188 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200783609, 'PROFIC corporation', 2020.0, 1930603122.0, '2020-03-10', 20200304, 20200310, '2020-04-11', 'USD', 'RV', 1.0, 11501.0, 20200310.0, 'NA32', 1930603122.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9189 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW llc', 2020.0, 1930716421.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 86727.9, 20200330.0, 'NAA8', 1930716421.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9190 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104423, 'METRO us', 2020.0, 2960626060.0, '2020-04-06', 20200406, 20200406, '2020-04-18', 'CAD', 'RV', 1.0, 20250.1, 20200408.0, 'CA10', 2960626060.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 9191 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC ', 2020.0, 1930772832.0, '2020-04-10', 20200410, 20200410, '2020-04-24', 'USD', 'RV', 1.0, 573.6, 20200401.0, 'NAM4', 1930772832.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 9192 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930691311.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 11621.36, 20200324.0, 'NAH4', 1930691311.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9193 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930718489.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 7979.25, 20200329.0, 'NAH4', 1930718489.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9194 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC systems', 2020.0, 1930817759.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 13232.61, 20200416.0, 'NAM4', 1930817759.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9195 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER systems', 2020.0, 1930705903.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 92779.06, 20200326.0, 'NAA8', 1930705903.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9196 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930881792.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 6774.91, 20200511.0, 'NAH4', 1930881792.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 9197 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930739136.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 31706.67, 20200403.0, 'NAA8', 1930739136.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9198 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930716675.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 10432.65, 20200329.0, 'NAH4', 1930716675.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9199 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930822026.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 13666.63, 20200424.0, 'NAA8', 1930822026.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9200 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930673260.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 35254.0, 20200320.0, 'NAH4', 1930673260.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9201 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corp', 2020.0, 2960629210.0, '2020-04-16', 20200416, 20200416, '2020-04-26', 'CAD', 'RV', 1.0, 88130.07, 20200416.0, 'CA10', 2960629210.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 9202 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930587214.0, '2020-03-02', 20200302, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 9209.4, 20200302.0, 'NAGD', 1930587214.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9203 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930623680.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 10783.83, 20200309.0, 'NAH4', 1930623680.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9204 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA systems', 2020.0, 1930669218.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 24629.74, 20200319.0, 'NAH4', 1930669218.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 9205 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930715503.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 23410.86, 20200330.0, 'NAH4', 1930715503.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9206 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200761734, 'H E BUT corp', 2020.0, 1930729610.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 51900.08, 20200331.0, 'NAA8', 1930729610.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9207 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930576012.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 586.91, 20200228.0, 'NAH4', 1930576012.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 9208 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930719151.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 32529.32, 20200330.0, 'NAH4', 1930719151.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9209 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930597600.0, '2020-03-05', 20200303, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 25005.54, 20200305.0, 'NAH4', 1930597600.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 9210 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930576566.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 69266.49, 20200227.0, 'NAH4', 1930576566.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 9211 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC llc', 2020.0, 1930724407.0, '2020-04-04', 20200331, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 20651.54, 20200404.0, 'NAA8', 1930724407.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 9212 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC associates', 2020.0, 1930657375.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 2222.64, 20200318.0, 'NAA8', 1930657375.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9213 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930585475.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 21790.18, 20200302.0, 'NAH4', 1930585475.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9214 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930773819.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 87107.75, 20200410.0, 'NAC6', 1930773819.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9215 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930699340.0, '2020-03-25', 20200325, 20200325, '2020-05-29', 'USD', 'RV', 1.0, 5456.75, 20200325.0, 'NAGD', 1930699340.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 9216 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930646516.0, '2020-03-15', 20200312, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 12833.15, 20200315.0, 'NAH4', 1930646516.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9217 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930720564.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 3747.47, 20200331.0, 'NAH4', 1930720564.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9218 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930850964.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 6106.39, 20200503.0, 'NAH4', 1930850964.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9219 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corporation', 2020.0, 1930750630.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 55144.36, 20200406.0, 'NAH4', 1930750630.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9220 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930797733.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 58979.37, 20200417.0, 'NAAX', 1930797733.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 9221 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH us', 2020.0, 1930666053.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 120129.02, 20200318.0, 'NAA8', 1930666053.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9222 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741174, 'M B associates', 2020.0, 1930808829.0, '2020-04-27', 20200421, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 5248.72, 20200427.0, 'NAA8', 1930808829.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 9223 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER us', 2020.0, 1930719395.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 37286.59, 20200331.0, 'NAA8', 1930719395.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9224 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS co', 2020.0, 1930658234.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 55905.08, 20200317.0, 'NAA8', 1930658234.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9225 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930844782.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 16315.08, 20200501.0, 'NAA8', 1930844782.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 9226 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200708411, 'SHAM us', 2020.0, 1930752197.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 24569.47, 20200406.0, 'NAA8', 1930752197.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9227 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930850099.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 15382.4, 20200503.0, 'NAA8', 1930850099.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 9228 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930646598.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 35423.16, 20200314.0, 'NAH4', 1930646598.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9229 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH foundation', 2020.0, 1930822314.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 93889.83, 20200423.0, 'NAA8', 1930822314.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9230 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930622904.0, '2020-03-07', 20200308, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 1585.11, 20200307.0, 'NAA8', 1930622904.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 9231 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960616984.0, '2020-03-02', 20200302, 20200302, '2020-03-20', 'CAD', 'RV', 1.0, 122965.01, 20200310.0, 'CA10', 2960616984.0, 1, '2020-03-26', '0-15 days' ); /* INSERT QUERY NO: 9232 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930827365.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 21030.05, 20200426.0, 'NAH4', 1930827365.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9233 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930649290.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 21084.13, 20200314.0, 'NAH4', 1930649290.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9234 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER co', 2020.0, 1930814049.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 112139.33, 20200422.0, 'NAA8', 1930814049.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9235 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL us', 2020.0, 1930566284.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 4726.49, 20200303.0, 'NAA8', 1930566284.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9236 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA associates', 2020.0, 1930823341.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 301.56, 20200416.0, 'NAM4', 1930823341.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9237 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930606025.0, '2020-03-05', 20200305, 20200305, '2020-04-19', 'USD', 'RV', 1.0, 79869.23, 20200305.0, 'NAWP', 1930606025.0, 1, '2020-04-20', '0-15 days' ); /* INSERT QUERY NO: 9238 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F us', 2020.0, 1930662128.0, '2020-03-19', 20200317, 20200319, '2020-03-19', 'USD', 'RV', 1.0, 8949.43, 20200319.0, 'NAX2', 1930662128.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 9239 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930718312.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 75115.23, 20200330.0, 'NAA8', 1930718312.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9240 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200920735, 'ALBERT llc', 2020.0, 1930691367.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 61170.65, 20200326.0, 'NAA8', 1930691367.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9241 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930652685.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 44960.64, 20200315.0, 'NAH4', 1930652685.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9242 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200002965, 'DECA in', 2020.0, 1930674315.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 4367.77, 20200316.0, 'NAM4', 1930674315.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9243 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C associates', 2020.0, 1930804929.0, '2020-04-27', 20200420, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 8340.11, 20200427.0, 'NAA8', 1930804929.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 9244 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930594454.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 527.54, 20200303.0, 'NAA8', 1930594454.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9245 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930681394.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 52790.53, 20200321.0, 'NAH4', 1930681394.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9246 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930845091.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 6979.63, 20200501.0, 'NAH4', 1930845091.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9247 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT us', 2020.0, 1930682314.0, '2020-03-21', 20200320, 20200321, '2020-04-25', 'USD', 'RV', 1.0, 14178.24, 20200321.0, 'NAG2', 1930682314.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9248 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930837459.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 18900.99, 20200430.0, 'NAH4', 1930837459.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 9249 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA ', 2020.0, 1930705923.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 24429.67, 20200327.0, 'NAH4', 1930705923.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9250 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930814483.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 71126.02, 20200423.0, 'NAA8', 1930814483.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9251 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200820380, 'SMITH\'S trust', 2020.0, 1930622088.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 17256.56, 20200309.0, 'NAA8', 1930622088.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9252 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG us', 2020.0, 1930776741.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 30118.01, 20200412.0, 'NAA8', 1930776741.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9253 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722444, 'PERFOR systems', 2020.0, 1930652856.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 38790.2, 20200316.0, 'NAA8', 1930652856.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9254 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707005, 'KING S trust', 2020.0, 1930724011.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 98755.41, 20200401.0, 'NAA8', 1930724011.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9255 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930778962.0, '2020-04-15', 20200412, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 13552.85, 20200415.0, 'NAH4', 1930778962.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9256 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930783918.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 9062.86, 20200415.0, 'NAH4', 1930783918.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9257 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930655600.0, '2020-03-17', 20200316, 20200317, '2020-05-21', 'USD', 'RV', 1.0, 23420.35, 20200317.0, 'NAGD', 1930655600.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9258 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA in', 2020.0, 1930856615.0, '2020-05-04', 20200504, 20200504, '2020-05-24', 'USD', 'RV', 1.0, 174.72, 20200501.0, 'NAM4', 1930856615.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 9259 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930672473.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 14002.63, 20200321.0, 'NAH4', 1930672473.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9260 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793088, 'DEMOU llc', 2020.0, 1930582414.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 61387.88, 20200302.0, 'NAA8', 1930582414.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9261 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE trust', 2020.0, 1930823592.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 95686.59, 20200427.0, 'NAA8', 1930823592.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9262 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930818630.0, '2020-04-22', 20200423, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 51753.36, 20200422.0, 'NAH4', 1930818630.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9263 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200357714, 'US in', 2020.0, 1930576008.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 70869.05, 20200227.0, 'NAA8', 1930576008.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 9264 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corporation', 2020.0, 1930685564.0, '2020-03-22', 20200323, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 551.1, 20200322.0, 'NAA8', 1930685564.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9265 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930557319.0, '2020-02-27', 20200221, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 1221.32, 20200227.0, 'NAA8', 1930557319.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 9266 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC co', 2020.0, 1930716637.0, '2020-03-25', 20200328, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 37113.67, 20200325.0, 'NAA8', 1930716637.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9267 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI llc', 2020.0, 1930727258.0, '2020-03-31', 20200401, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 148074.41, 20200331.0, 'NAA8', 1930727258.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9268 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930585677.0, '2020-03-04', 20200301, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 1501.27, 20200304.0, 'NAAX', 1930585677.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9269 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930635822.0, '2020-03-12', 20200310, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 16644.77, 20200312.0, 'NAH4', 1930635822.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9270 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930683426.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 19507.71, 20200321.0, 'NAH4', 1930683426.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9271 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE foundation', 2020.0, 2960623046.0, '2020-03-21', 20200321, 20200321, '2020-04-08', 'CAD', 'RV', 1.0, 60151.46, 20200329.0, 'CA10', 2960623046.0, 1, '2020-04-13', '0-15 days' ); /* INSERT QUERY NO: 9272 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930780169.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 41310.52, 20200413.0, 'NAH4', 1930780169.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 9273 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO corp', 2020.0, 2960622476.0, '2020-03-21', 20200321, 20200321, '2020-04-08', 'CAD', 'RV', 1.0, 8594.02, 20200329.0, 'CA10', 2960622476.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 9274 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE ', 2020.0, 2960627230.0, '2020-04-07', 20200407, 20200407, '2020-04-24', 'CAD', 'RV', 1.0, 89591.32, 20200414.0, 'CA10', 2960627230.0, 1, '2020-04-29', '0-15 days' ); /* INSERT QUERY NO: 9275 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930718181.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 102016.75, 20200329.0, 'NAU5', 1930718181.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9276 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930862144.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 25008.66, 20200506.0, 'NAA8', 1930862144.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9277 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER corp', 2020.0, 1930873901.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 89279.02, 20200507.0, 'NAA8', 1930873901.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9278 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930882662.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 59736.28, 20200510.0, 'NAH4', 1930882662.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 9279 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U005', 0100025658, 'PEA co', 2020.0, 1930795208.0, '2020-04-17', 20200416, 20200417, '2020-05-17', 'USD', 'RV', 1.0, 3901.32, 20200417.0, 'NAD5', 1930795208.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 9280 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930783178.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 943.12, 20200414.0, 'NAH4', 1930783178.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9281 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA ', 2020.0, 1930745951.0, '2020-04-04', 20200404, 20200404, '2020-04-24', 'USD', 'RV', 1.0, 3240.0, 20200401.0, 'NAM4', 1930745951.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9282 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930837633.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 39356.36, 20200501.0, 'NAH4', 1930837633.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9283 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO llc', 2020.0, 2960629753.0, '2020-04-22', 20200422, 20200422, '2020-05-05', 'CAD', 'RV', 1.0, 125558.86, 20200425.0, 'CA10', 2960629753.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 9284 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104475, 'FOC llc', 2020.0, 2960620710.0, '2020-03-12', 20200312, 20200312, '2020-03-30', 'CAD', 'RV', 1.0, 44911.15, 20200320.0, 'CA10', 2960620710.0, 1, '2020-04-04', '0-15 days' ); /* INSERT QUERY NO: 9285 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S corp', 2020.0, 1930724401.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 428.72, 20200331.0, 'NAA8', 1930724401.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9286 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930796698.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 111197.07, 20200418.0, 'NAA8', 1930796698.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9287 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960622851.0, '2020-03-22', 20200322, 20200322, '2020-04-04', 'CAD', 'RV', 1.0, 93395.51, 20200325.0, 'CA10', 2960622851.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 9288 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA corporation', 2020.0, 1930608331.0, '2020-03-05', 20200305, 20200305, '2020-03-25', 'USD', 'RV', 1.0, 1221.43, 20200305.0, 'NAD1', 1930608331.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 9289 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT in', 2020.0, 1930720976.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 75738.84, 20200330.0, 'NAU5', 1930720976.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9290 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200741831, 'SUPE ', 2020.0, 1930809398.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 14335.42, 20200421.0, 'NAA8', 1930809398.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9291 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB foundation', 2020.0, 2960625838.0, '2020-04-03', 20200403, 20200403, '2020-04-13', 'CAD', 'RV', 1.0, 89262.56, 20200403.0, 'CA10', 2960625838.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 9292 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA systems', 2020.0, 1930856971.0, '2020-05-05', 20200505, 20200505, '2020-05-11', 'USD', 'RV', 1.0, 27.3, 20200501.0, 'NAM2', 1930856971.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9293 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930724633.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 10178.94, 20200401.0, 'NAC6', 1930724633.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9294 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930673287.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 62.17, 20200320.0, 'NAH4', 1930673287.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9295 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930635788.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 16216.76, 20200312.0, 'NAA8', 1930635788.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9296 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO ', 2020.0, 2960632750.0, '2020-05-07', 20200507, 20200507, '2020-05-18', 'CAD', 'RV', 1.0, 3935.86, 20200508.0, 'CA10', 2960632750.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 9297 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F llc', 2020.0, 1930671393.0, '2020-03-23', 20200319, 20200323, '2020-03-23', 'USD', 'RV', 1.0, 13944.2, 20200323.0, 'NAX2', 1930671393.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 9298 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100034823, 'ZARCO co', 2020.0, 2960631725.0, '2020-04-29', 20200429, 20200429, '2020-05-11', 'CAD', 'RV', 1.0, 11359.95, 20200501.0, 'CA10', 2960631725.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 9299 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930638093.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 1898.9, 20200312.0, 'NAH4', 1930638093.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9300 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100012638, '99 CE co', 2020.0, 1930630165.0, '2020-03-10', 20200310, 20200310, '2020-05-14', 'USD', 'RV', 1.0, 3975.8, 20200310.0, 'NAGD', 1930630165.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9301 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739534, 'OK corp', 2020.0, 1930733301.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 47825.22, 20200402.0, 'NAA8', 1930733301.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 9302 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE systems', 2020.0, 1930750664.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 152658.84, 20200407.0, 'NAA8', 1930750664.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9303 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200982290, 'CIRC corp', 2020.0, 1930670110.0, '2020-03-24', 20200318, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 25082.0, 20200324.0, 'NAA8', 1930670110.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9304 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930675576.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 17602.54, 20200321.0, 'NAH4', 1930675576.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9305 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M corp', 2020.0, 2960620917.0, '2020-03-14', 20200314, 20200314, '2020-03-24', 'CAD', 'RV', 1.0, 52417.88, 20200314.0, 'CA10', 2960620917.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 9306 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930850813.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 14481.53, 20200502.0, 'NAH4', 1930850813.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9307 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030443, 'GLACIE foundation', 2020.0, 1930659548.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 3410.5, 20200316.0, 'NAA8', 1930659548.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 9308 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE foundation', 2020.0, 1930664169.0, '2020-03-17', 20200318, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 58606.11, 20200317.0, 'NAA8', 1930664169.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9309 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL in', 2020.0, 1930782497.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 42999.31, 20200415.0, 'NAA8', 1930782497.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9310 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930583185.0, '2020-03-02', 20200229, 20200302, '2020-05-06', 'USD', 'RV', 1.0, 2973.0, 20200302.0, 'NAGD', 1930583185.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9311 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200707822, 'PUBLI co', 2020.0, 1930724496.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 88203.64, 20200331.0, 'NAA8', 1930724496.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9312 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930668388.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 26227.82, 20200320.0, 'NAH4', 1930668388.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9313 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930874623.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 8137.43, 20200508.0, 'NAH4', 1930874623.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 9314 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M co', 2020.0, 2960622617.0, '2020-03-19', 20200319, 20200319, '2020-03-29', 'CAD', 'RV', 1.0, 29161.8, 20200319.0, 'CA10', 2960622617.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 9315 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ associates', 2020.0, 1930855280.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 126078.73, 20200504.0, 'NAA8', 1930855280.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9316 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930874260.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 59546.8, 20200508.0, 'NAH4', 1930874260.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 9317 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930603197.0, '2020-03-06', 20200304, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 83685.62, 20200306.0, 'NAH4', 1930603197.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9318 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200735528, 'ASSOCIA foundation', 2020.0, 1930731462.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 23207.61, 20200403.0, 'NAA8', 1930731462.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9319 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030250, 'QUESO corporation', 2020.0, 1930833918.0, '2020-04-30', 20200428, 20200430, '2020-05-10', 'USD', 'RV', 1.0, 33333.3, 20200430.0, 'NA10', 1930833918.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9320 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200719839, 'ASSOCI associates', 2020.0, 1930593600.0, '2020-03-05', 20200303, 20200305, '2020-05-09', 'USD', 'RV', 1.0, 14275.48, 20200305.0, 'NAGD', 1930593600.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9321 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930801446.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 68466.77, 20200419.0, 'NAA8', 1930801446.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9322 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER co', 2020.0, 1930775490.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 78291.84, 20200410.0, 'NAA8', 1930775490.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9323 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930747826.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 725.82, 20200405.0, 'NAA8', 1930747826.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9324 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793830, 'M llc', 2020.0, 1930762740.0, '2020-04-07', 20200408, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 53385.94, 20200407.0, 'NAA8', 1930762740.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9325 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930800922.0, '2020-04-19', 20200418, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 3796.4, 20200419.0, 'NAH4', 1930800922.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9326 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930674478.0, '2020-03-21', 20200320, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 30583.99, 20200321.0, 'NAA8', 1930674478.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9327 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200732421, 'MARTI in', 2020.0, 1930855434.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 175085.93, 20200504.0, 'NAA8', 1930855434.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 9328 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS trust', 2020.0, 1930548420.0, '2020-02-27', 20200220, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 4740.75, 20200227.0, 'NAA8', 1930548420.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 9329 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762950, 'HAR in', 2020.0, 1930705446.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 115141.74, 20200328.0, 'NAA8', 1930705446.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9330 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930778314.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 65775.16, 20200412.0, 'NAH4', 1930778314.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9331 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ llc', 2020.0, 1930778765.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 93919.03, 20200413.0, 'NAA8', 1930778765.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9332 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930793236.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 887.17, 20200416.0, 'NAH4', 1930793236.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9333 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930736917.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 88665.66, 20200402.0, 'NAC6', 1930736917.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9334 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN llc', 2020.0, 1930808264.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 15873.58, 20200423.0, 'NAA8', 1930808264.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9335 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200789077, 'US us', 2020.0, 1930770783.0, '2020-04-17', 20200409, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 3249.85, 20200417.0, 'NAA8', 1930770783.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9336 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104552, 'THE NO foundation', 2020.0, 2960626915.0, '2020-04-05', 20200405, 20200405, '2020-04-21', 'CAD', 'RV', 1.0, 81473.23, 20200411.0, 'CA10', 2960626915.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 9337 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR corp', 2020.0, 1930783478.0, '2020-04-17', 20200414, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 21811.5, 20200417.0, 'NAA8', 1930783478.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9338 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960617106.0, '2020-02-27', 20200227, 20200227, '2020-03-10', 'CAD', 'RV', 1.0, 153749.15, 20200229.0, 'CA10', 2960617106.0, 1, '2020-03-14', '0-15 days' ); /* INSERT QUERY NO: 9339 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F co', 2020.0, 1930609547.0, '2020-03-06', 20200306, 20200306, '2020-03-06', 'USD', 'RV', 1.0, 16238.2, 20200306.0, 'NAX2', 1930609547.0, 1, '2020-03-12', '0-15 days' ); /* INSERT QUERY NO: 9340 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930570520.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 14645.22, 20200227.0, 'NAH4', 1930570520.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 9341 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ corp', 2020.0, 1930651103.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 6930.43, 20200313.0, 'NAA8', 1930651103.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 9342 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930666508.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 388.29, 20200318.0, 'NAH4', 1930666508.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9343 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930619800.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 6685.12, 20200309.0, 'NAH4', 1930619800.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9344 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930699387.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 9943.87, 20200325.0, 'NAH4', 1930699387.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9345 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930655487.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 45810.54, 20200316.0, 'NAH4', 1930655487.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 9346 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S us', 2020.0, 1930716713.0, '2020-03-25', 20200328, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 1538.78, 20200325.0, 'NAA8', 1930716713.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9347 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930869908.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 220.86, 20200507.0, 'NAA8', 1930869908.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9348 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930604676.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 55597.49, 20200306.0, 'NAH4', 1930604676.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9349 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930778101.0, '2020-04-14', 20200411, 20200414, '2020-05-29', 'USD', 'RV', 1.0, 112053.59, 20200414.0, 'NAWP', 1930778101.0, 1, '2020-05-30', '0-15 days' ); /* INSERT QUERY NO: 9350 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930555879.0, '2020-02-27', 20200221, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 6956.14, 20200227.0, 'NAA8', 1930555879.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 9351 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930645619.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 16361.42, 20200312.0, 'NAH4', 1930645619.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9352 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930857225.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 50364.46, 20200504.0, 'NAA8', 1930857225.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 9353 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729828, 'KENNETH in', 2020.0, 1930576005.0, '2020-03-03', 20200302, 20200303, '2020-03-23', 'USD', 'RV', 1.0, 12511.01, 20200303.0, 'NAD1', 1930576005.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9354 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930723604.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 11373.66, 20200401.0, 'NAC6', 1930723604.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9355 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER in', 2020.0, 1930717081.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 21046.06, 20200329.0, 'NAA8', 1930717081.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9356 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930787955.0, '2020-04-14', 20200415, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 13692.93, 20200414.0, 'NAC6', 1930787955.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 9357 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930578010.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 687.54, 20200227.0, 'NAA8', 1930578010.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 9358 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930801682.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 12946.74, 20200420.0, 'NAH4', 1930801682.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9359 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200696090, 'UNITE systems', 2020.0, 1930607695.0, '2020-03-08', 20200305, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 8123.58, 20200308.0, 'NAA8', 1930607695.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 9360 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC systems', 2020.0, 1930629756.0, '2020-03-09', 20200310, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 1191.12, 20200309.0, 'NAA8', 1930629756.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9361 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930583164.0, '2020-02-28', 20200229, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 2373.96, 20200228.0, 'NAH4', 1930583164.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 9362 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930816158.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 13358.3, 20200423.0, 'NAA8', 1930816158.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9363 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930673818.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 24853.22, 20200320.0, 'NAH4', 1930673818.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9364 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930725713.0, '2020-04-02', 20200331, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 15741.73, 20200402.0, 'NAH4', 1930725713.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9365 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960630905.0, '2020-04-25', 20200425, 20200425, '2020-05-06', 'CAD', 'RV', 1.0, 22025.31, 20200426.0, 'CA10', 2960630905.0, 1, '2020-05-10', '0-15 days' ); /* INSERT QUERY NO: 9366 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930637941.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 43290.88, 20200312.0, 'NAH4', 1930637941.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9367 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200780383, 'MEIJ ', 2020.0, 1930675366.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 65639.39, 20200320.0, 'NAA8', 1930675366.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9368 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930585606.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 1046.9, 20200302.0, 'NAH4', 1930585606.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9369 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC associates', 2020.0, 1930823072.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 3673.46, 20200416.0, 'NAM4', 1930823072.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9370 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930781294.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 82.82, 20200414.0, 'NAA8', 1930781294.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9371 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930789540.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 1076.67, 20200416.0, 'NAA8', 1930789540.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 9372 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930653145.0, '2020-03-14', 20200314, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 128140.25, 20200314.0, 'NAA8', 1930653145.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 9373 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930822336.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 18552.08, 20200423.0, 'NAC6', 1930822336.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9374 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET systems', 2020.0, 1930593774.0, '2020-03-06', 20200303, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 4845.0, 20200306.0, 'NAA8', 1930593774.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 9375 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 140104429, 'COSTCO corp', 2020.0, 2960622800.0, '2020-03-19', 20200319, 20200319, '2020-03-30', 'CAD', 'RV', 1.0, 19812.45, 20200320.0, 'CA10', 2960622800.0, 1, '2020-04-06', '0-15 days' ); /* INSERT QUERY NO: 9376 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA us', 2020.0, 1930740724.0, '2020-04-03', 20200403, 20200403, '2020-04-24', 'USD', 'RV', 1.0, 9398.76, 20200401.0, 'NAM4', 1930740724.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9377 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200737918, 'W LEE corporation', 2020.0, 1930819978.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 19620.12, 20200424.0, 'NAA8', 1930819978.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9378 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT co', 2020.0, 1930611906.0, '2020-03-07', 20200306, 20200307, '2020-04-10', 'USD', 'RV', 1.0, 4803.65, 20200307.0, 'NAAW', 1930611906.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9379 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA corporation', 2020.0, 1930691960.0, '2020-03-24', 20200324, 20200324, '2020-03-23', 'USD', 'RV', 1.0, 36102.76, 20200316.0, 'NAM1', 1930691960.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9380 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB systems', 2020.0, 2960632974.0, '2020-05-07', 20200507, 20200507, '2020-05-18', 'CAD', 'RV', 1.0, 238485.25, 20200508.0, 'CA10', 2960632974.0, 1, '2020-05-22', '0-15 days' ); /* INSERT QUERY NO: 9381 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH in', 2020.0, 1930861241.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 8660.57, 20200506.0, 'NAA8', 1930861241.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9382 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM trust', 2020.0, 1930583238.0, '2020-03-03', 20200229, 20200303, '2020-05-07', 'USD', 'RV', 1.0, 3003.8, 20200303.0, 'NAGD', 1930583238.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9383 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930873588.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 7664.54, 20200507.0, 'NAA8', 1930873588.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9384 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200576926, 'VILA foundation', 2020.0, 1930582267.0, '2020-03-02', 20200229, 20200302, '2020-03-12', 'USD', 'RV', 1.0, 44315.25, 20200302.0, 'NA10', 1930582267.0, 1, '2020-03-06', 'early' ); /* INSERT QUERY NO: 9385 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930730027.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 15719.25, 20200401.0, 'NAH4', 1930730027.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9386 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100053554, 'SYSTEMS corporation', 2020.0, 1991842159.0, '2020-04-25', 20200421, 20200425, '2020-05-25', 'USD', 'RV', 1.0, 757.8, 20200425.0, 'NAVE', 1991842159.0, 1, '2020-05-30', '0-15 days' ); /* INSERT QUERY NO: 9387 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930859210.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 31934.43, 20200507.0, 'NAH4', 1930859210.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 9388 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930794068.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 51072.3, 20200417.0, 'NAH4', 1930794068.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9389 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930758471.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 39049.33, 20200407.0, 'NAH4', 1930758471.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9390 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930758237.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 43010.55, 20200407.0, 'NAA8', 1930758237.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9391 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930782886.0, '2020-04-18', 20200414, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 4072.11, 20200418.0, 'NAAX', 1930782886.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9392 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930647148.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 1991.84, 20200313.0, 'NAH4', 1930647148.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 9393 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET foundation', 2020.0, 1930768138.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 7957.87, 20200410.0, 'NAA8', 1930768138.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9394 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C corporation', 2020.0, 1930685878.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 72199.96, 20200325.0, 'NAA8', 1930685878.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9395 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA us', 2020.0, 1930661800.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 22222.01, 20200317.0, 'NAH4', 1930661800.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9396 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930783205.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 758.82, 20200414.0, 'NAA8', 1930783205.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9397 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960623923.0, '2020-03-25', 20200325, 20200325, '2020-04-05', 'CAD', 'RV', 1.0, 126313.13, 20200326.0, 'CA10', 2960623923.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 9398 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT corporation', 2020.0, 1930682826.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 16340.68, 20200321.0, 'NAA8', 1930682826.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9399 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782772, 'ASSOC G associates', 2020.0, 1930623692.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 70750.44, 20200309.0, 'NAA8', 1930623692.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9400 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930723002.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 7001.11, 20200401.0, 'NAH4', 1930723002.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9401 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC in', 2020.0, 2960618066.0, '2020-03-13', 20200313, 20200313, '2020-03-23', 'CAD', 'RV', 1.0, 2315.52, 20200313.0, 'CA10', 2960618066.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 9402 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930778711.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 331.8, 20200412.0, 'NAA8', 1930778711.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9403 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT us', 2020.0, 1930787700.0, '2020-04-15', 20200414, 20200415, '2020-05-19', 'USD', 'RV', 1.0, 24974.46, 20200415.0, 'NAAW', 1930787700.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 9404 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS llc', 2020.0, 1930797561.0, '2020-04-19', 20200417, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 3020.72, 20200419.0, 'NAA8', 1930797561.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9405 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT co', 2020.0, 1930860478.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 120458.11, 20200506.0, 'NAU5', 1930860478.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 9406 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930716582.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 9752.87, 20200329.0, 'NAH4', 1930716582.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9407 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200014556, 'ALBER ', 2020.0, 1930853003.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 99888.22, 20200504.0, 'NAA8', 1930853003.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 9408 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC trust', 2020.0, 1930817772.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 406.08, 20200416.0, 'NAM4', 1930817772.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9409 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104277, 'WALLA llc', 2020.0, 2960619856.0, '2020-03-11', 20200311, 20200311, '2020-03-23', 'CAD', 'RV', 1.0, 9102.41, 20200313.0, 'CA10', 2960619856.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 9410 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG corp', 2020.0, 1930768046.0, '2020-04-08', 20200409, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 28576.98, 20200408.0, 'NAA8', 1930768046.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9411 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT us', 2020.0, 1930666573.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 8197.46, 20200318.0, 'NAU5', 1930666573.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9412 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT corporation', 2020.0, 1930659132.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 1254.55, 20200316.0, 'NAA8', 1930659132.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9413 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930833960.0, '2020-04-28', 20200428, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 20045.68, 20200428.0, 'NAAX', 1930833960.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 9414 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200886415, 'COSTCO trust', 2020.0, 1930700828.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 8151.3, 20200401.0, 'NAA8', 1930700828.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9415 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corporation', 2020.0, 1930653300.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 15782.71, 20200315.0, 'NAA8', 1930653300.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9416 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930716090.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 78632.38, 20200328.0, 'NAA8', 1930716090.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9417 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930848357.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 42571.79, 20200501.0, 'NAH4', 1930848357.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9418 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA ', 2020.0, 1930751980.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 28855.53, 20200406.0, 'NAH4', 1930751980.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9419 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930703330.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 14625.05, 20200326.0, 'NAH4', 1930703330.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9420 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200737918, 'W LEE foundation', 2020.0, 1930594137.0, '2020-03-03', 20200303, 20200303, '2020-05-07', 'USD', 'RV', 1.0, 4011.79, 20200303.0, 'NAGD', 1930594137.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9421 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU ', 2020.0, 1930776856.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 50850.93, 20200413.0, 'NAA8', 1930776856.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9422 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC ', 2020.0, 1930691980.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 23621.1, 20200326.0, 'NAA8', 1930691980.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9423 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930850076.0, '2020-05-05', 20200502, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 498.68, 20200505.0, 'NAH4', 1930850076.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9424 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930846658.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 82157.96, 20200501.0, 'NAC6', 1930846658.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 9425 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930827335.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 11514.78, 20200426.0, 'NAH4', 1930827335.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9426 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT in', 2020.0, 1930600071.0, '2020-03-05', 20200304, 20200305, '2020-05-09', 'USD', 'RV', 1.0, 22.43, 20200305.0, 'NAGD', 1930600071.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9427 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH systems', 2020.0, 1930855833.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 95314.56, 20200504.0, 'NAA8', 1930855833.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9428 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200779719, 'FOOD 4 llc', 2020.0, 1930861044.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 13388.51, 20200506.0, 'NAA8', 1930861044.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9429 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930703814.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 46701.09, 20200328.0, 'NAH4', 1930703814.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9430 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA trust', 2020.0, 1930701382.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 16575.01, 20200327.0, 'NAH4', 1930701382.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9431 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100043975, 'JAVA associates', 2020.0, 1930578884.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 1842.0, 20200227.0, 'NAA8', 1930578884.0, 1, '2020-03-05', 'early' ); /* INSERT QUERY NO: 9432 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930719855.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 1611.62, 20200331.0, 'NAH4', 1930719855.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9433 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793830, 'M llc', 2020.0, 1930675550.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 83621.7, 20200320.0, 'NAA8', 1930675550.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9434 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930703874.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 73791.76, 20200330.0, 'NAH4', 1930703874.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9435 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL co', 2020.0, 1930710249.0, '2020-04-01', 20200328, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 7189.19, 20200401.0, 'NAA8', 1930710249.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9436 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930884341.0, '2020-05-11', 20200509, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 4332.64, 20200511.0, 'NAH4', 1930884341.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 9437 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930713591.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 33431.66, 20200329.0, 'NAH4', 1930713591.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9438 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG corporation', 2020.0, 1930849994.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 620.39, 20200504.0, 'NAA8', 1930849994.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9439 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO co', 2020.0, 1930571419.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 6911.53, 20200227.0, 'NAA8', 1930571419.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 9440 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930673896.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 2645.23, 20200320.0, 'NAU5', 1930673896.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9441 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930796462.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 18042.89, 20200417.0, 'NAH4', 1930796462.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9442 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930585608.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 22059.39, 20200302.0, 'NAH4', 1930585608.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9443 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200865666, 'RESTAU foundation', 2020.0, 1930706792.0, '2020-03-26', 20200326, 20200326, '2020-04-15', 'USD', 'RV', 1.0, 1203.43, 20200326.0, 'NAD1', 1930706792.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9444 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI corp', 2020.0, 1930708439.0, '2020-03-26', 20200326, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 41484.95, 20200326.0, 'NAA8', 1930708439.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9445 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960631944.0, '2020-04-30', 20200430, 20200430, '2020-05-11', 'CAD', 'RV', 1.0, 54142.6, 20200501.0, 'CA10', 2960631944.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 9446 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200466603, 'SMITH\'S ', 2020.0, 1930583641.0, '2020-02-28', 20200229, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 46611.85, 20200228.0, 'NAA8', 1930583641.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 9447 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M us', 2020.0, 2960620963.0, '2020-03-18', 20200318, 20200318, '2020-03-28', 'CAD', 'RV', 1.0, 93521.83, 20200318.0, 'CA10', 2960620963.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 9448 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA us', 2020.0, 1930674516.0, '2020-03-20', 20200320, 20200320, '2020-03-26', 'USD', 'RV', 1.0, 7352.11, 20200316.0, 'NAM2', 1930674516.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9449 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ us', 2020.0, 1930683611.0, '2020-03-20', 20200321, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 10135.17, 20200320.0, 'NAA8', 1930683611.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9450 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE trust', 2020.0, 1930759057.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 146605.33, 20200408.0, 'NAA8', 1930759057.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9451 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106231, 'PRATT foundation', 2020.0, 2960624849.0, '2020-03-29', 20200330, 20200329, '2020-04-14', 'CAD', 'RV', 1.0, 37289.22, 20200404.0, 'CA10', 2960624849.0, 1, '2020-04-16', '0-15 days' ); /* INSERT QUERY NO: 9452 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930581241.0, '2020-02-28', 20200228, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 429.0, 20200228.0, 'NAH4', 1930581241.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 9453 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F ', 2020.0, 2960631417.0, '2020-04-27', 20200427, 20200427, '2020-05-09', 'CAD', 'RV', 1.0, 8717.0, 20200429.0, 'CA10', 2960631417.0, 1, '2020-05-14', '0-15 days' ); /* INSERT QUERY NO: 9454 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930828169.0, '2020-04-25', 20200427, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 1109.91, 20200425.0, 'NAA8', 1930828169.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9455 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corp', 2020.0, 2960622166.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'CAD', 'RV', 1.0, 135815.44, 20200320.0, 'CA10', 2960622166.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 9456 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930731394.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 284.44, 20200402.0, 'NAH4', 1930731394.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9457 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739534, 'OK associates', 2020.0, 1930737814.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 19310.84, 20200402.0, 'NAA8', 1930737814.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9458 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960620071.0, '2020-03-16', 20200316, 20200316, '2020-03-28', 'CAD', 'RV', 1.0, 43024.21, 20200318.0, 'CA10', 2960620071.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 9459 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930745672.0, '2020-04-06', 20200404, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 82326.58, 20200406.0, 'NAH4', 1930745672.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9460 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA llc', 2020.0, 1930876715.0, '2020-05-07', 20200507, 20200507, '2020-05-24', 'USD', 'RV', 1.0, 347.04, 20200501.0, 'NAM4', 1930876715.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 9461 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200557600, 'GREEN llc', 2020.0, 1930795035.0, '2020-04-16', 20200416, 20200416, '2020-04-26', 'USD', 'RV', 1.0, 1275.56, 20200416.0, 'NA10', 1930795035.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9462 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG llc', 2020.0, 1930773576.0, '2020-04-12', 20200410, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 8041.11, 20200412.0, 'NAA8', 1930773576.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9463 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930792855.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 104568.77, 20200415.0, 'NAA8', 1930792855.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9464 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO llc', 2020.0, 2960618641.0, '2020-03-08', 20200309, 20200308, '2020-03-21', 'CAD', 'RV', 1.0, 23355.06, 20200311.0, 'CA10', 2960618641.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 9465 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET systems', 2020.0, 1930769308.0, '2020-04-10', 20200409, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 5907.13, 20200410.0, 'NAA8', 1930769308.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9466 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M associates', 2020.0, 2960620535.0, '2020-03-12', 20200312, 20200312, '2020-03-23', 'CAD', 'RV', 1.0, 1940.24, 20200313.0, 'CA10', 2960620535.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 9467 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930674054.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 14204.38, 20200320.0, 'NAAX', 1930674054.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9468 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930648342.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 52123.3, 20200315.0, 'NAA8', 1930648342.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9469 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER systems', 2020.0, 1930681760.0, '2020-03-21', 20200321, 20200321, '2020-04-05', 'USD', 'RV', 1.0, 143865.37, 20200321.0, 'NAA8', 1930681760.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9470 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC trust', 2020.0, 1930617747.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 3224.1, 20200301.0, 'NAM4', 1930617747.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9471 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC systems', 2020.0, 1930676609.0, '2020-03-20', 20200320, 20200320, '2020-04-08', 'USD', 'RV', 1.0, 2938.18, 20200316.0, 'NAM4', 1930676609.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9472 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930709993.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 3618.51, 20200328.0, 'NAH4', 1930709993.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9473 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930738672.0, '2020-04-02', 20200403, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 50835.8, 20200402.0, 'NAA8', 1930738672.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9474 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200725421, 'BEN trust', 2020.0, 1930637348.0, '2020-03-12', 20200311, 20200312, '2020-04-13', 'USD', 'RV', 1.0, 41009.25, 20200312.0, 'NA32', 1930637348.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9475 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC associates', 2020.0, 1930676673.0, '2020-03-21', 20200321, 20200321, '2020-03-26', 'USD', 'RV', 1.0, 23460.88, 20200316.0, 'NAM2', 1930676673.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9476 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930781354.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 31039.93, 20200413.0, 'NAA8', 1930781354.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 9477 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corporation', 2020.0, 1930669379.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 11872.24, 20200320.0, 'NAA8', 1930669379.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 9478 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE foundation', 2020.0, 1930690170.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 23105.37, 20200324.0, 'NAA8', 1930690170.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9479 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930647529.0, '2020-03-20', 20200313, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 5394.54, 20200320.0, 'NAH4', 1930647529.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9480 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930834239.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 16.82, 20200429.0, 'NAH4', 1930834239.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 9481 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER systems', 2020.0, 1930809714.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 51826.31, 20200421.0, 'NAA8', 1930809714.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9482 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930803532.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 36868.58, 20200420.0, 'NAH4', 1930803532.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9483 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930710033.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 1898.9, 20200328.0, 'NAH4', 1930710033.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9484 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC systems', 2020.0, 1930582994.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 30503.52, 20200302.0, 'NAA8', 1930582994.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9485 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER corporation', 2020.0, 1930830234.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 15307.14, 20200428.0, 'NAA8', 1930830234.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9486 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930622646.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 42157.96, 20200308.0, 'NAH4', 1930622646.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9487 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR llc', 2020.0, 1930885129.0, '2020-05-10', 20200510, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 38940.26, 20200510.0, 'NAH4', 1930885129.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 9488 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA co', 2020.0, 1930643409.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 6201.68, 20200312.0, 'NAA8', 1930643409.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9489 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930684041.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 570.42, 20200322.0, 'NAH4', 1930684041.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9490 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200806580, 'BE associates', 2020.0, 1930584409.0, '2020-03-03', 20200229, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 15064.23, 20200303.0, 'NAA8', 1930584409.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9491 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930781999.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 46714.54, 20200415.0, 'NAH4', 1930781999.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9492 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0140103461, 'SOLOM co', 2020.0, 1991839755.0, '2020-03-03', 20200228, 20200303, '2020-04-02', 'USD', 'RV', 1.0, 1264.2, 20200303.0, 'NAVE', 1991839755.0, 1, '2020-04-09', '0-15 days' ); /* INSERT QUERY NO: 9493 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100054686, 'KD systems', 2020.0, 1930832461.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 10546.0, 20200427.0, 'NAA8', 1930832461.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9494 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797984, 'PIGGLY associates', 2020.0, 1930626288.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 131557.91, 20200311.0, 'NAA8', 1930626288.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9495 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930788907.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 12639.78, 20200417.0, 'NAH4', 1930788907.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9496 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930850822.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 47950.08, 20200502.0, 'NAH4', 1930850822.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9497 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930655367.0, '2020-03-15', 20200317, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 32715.47, 20200315.0, 'NAAX', 1930655367.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9498 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930577697.0, '2020-02-29', 20200228, 20200229, '2020-05-04', 'USD', 'RV', 1.0, 21547.28, 20200229.0, 'NAGD', 1930577697.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9499 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930825627.0, '2020-04-26', 20200424, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 81616.57, 20200426.0, 'NAH4', 1930825627.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9500 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930885417.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 569.46, 20200511.0, 'NAH4', 1930885417.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 9501 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105785, 'SHOPPE associates', 2020.0, 2960630489.0, '2020-04-26', 20200426, 20200426, '2020-05-15', 'CAD', 'RV', 1.0, 16608.0, 20200505.0, 'CA10', 2960630489.0, 1, '2020-05-16', '0-15 days' ); /* INSERT QUERY NO: 9502 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930703715.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 38831.94, 20200327.0, 'NAH4', 1930703715.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9503 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200764795, 'SYSCO associates', 2020.0, 1930656797.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 3478.74, 20200316.0, 'NAA8', 1930656797.0, 1, '2020-03-26', 'early' ); /* INSERT QUERY NO: 9504 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930667131.0, '2020-03-18', 20200318, 20200318, '2020-04-19', 'USD', 'RV', 1.0, 37977.88, 20200318.0, 'NA32', 1930667131.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9505 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930819018.0, '2020-04-22', 20200423, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 52808.45, 20200422.0, 'NAH4', 1930819018.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9506 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200424504, 'M associates', 2020.0, 1930860373.0, '2020-05-05', 20200505, 20200505, '2020-05-15', 'USD', 'RV', 1.0, 14474.73, 20200515.0, 'NACH', 1930860373.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 9507 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA llc', 2020.0, 1930580313.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 12801.48, 20200227.0, 'NAA8', 1930580313.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 9508 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792734, 'MDV/ us', 2020.0, 1930646115.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 73667.12, 20200312.0, 'NAA8', 1930646115.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9509 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM llc', 2020.0, 1930645501.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 58256.47, 20200312.0, 'NAA8', 1930645501.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9510 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200592182, 'DECA us', 2020.0, 1930606969.0, '2020-03-05', 20200305, 20200305, '2020-03-24', 'USD', 'RV', 1.0, 1248.24, 20200301.0, 'NAM4', 1930606969.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9511 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930886119.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 62953.86, 20200511.0, 'NAH4', 1930886119.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 9512 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930741025.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 27869.68, 20200403.0, 'NAH4', 1930741025.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9513 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930853799.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 39503.28, 20200503.0, 'NAH4', 1930853799.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9514 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U013', 0100031686, 'EWT-EU corporation', 2020.0, 1991839535.0, '2020-02-29', 20200225, 20200229, '2020-03-30', 'USD', 'RV', 1.0, 19784.47, 20200229.0, 'NAVE', 1991839535.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 9515 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930630049.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 824.93, 20200311.0, 'NAH4', 1930630049.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9516 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930768667.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 1898.9, 20200409.0, 'NAH4', 1930768667.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 9517 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK foundation', 2020.0, 1930768155.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 33190.85, 20200409.0, 'NAA8', 1930768155.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9518 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- associates', 2020.0, 2960628988.0, '2020-04-18', 20200418, 20200418, '2020-05-07', 'CAD', 'RV', 1.0, 158440.9, 20200427.0, 'CA10', 2960628988.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 9519 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W systems', 2020.0, 1930837347.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 108588.02, 20200429.0, 'NAC6', 1930837347.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 9520 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT trust', 2020.0, 1930755279.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 63420.97, 20200406.0, 'NAA8', 1930755279.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9521 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200785971, 'SYSCO corp', 2020.0, 1930687609.0, '2020-03-23', 20200323, 20200323, '2020-04-24', 'USD', 'RV', 1.0, 19403.93, 20200323.0, 'NA32', 1930687609.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9522 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR foundation', 2020.0, 1930818482.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 122209.98, 20200424.0, 'NAA8', 1930818482.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9523 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930714769.0, '2020-03-27', 20200328, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 16210.66, 20200327.0, 'NAH4', 1930714769.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9524 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930789157.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 67851.9, 20200417.0, 'NAH4', 1930789157.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9525 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930682277.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 68961.52, 20200322.0, 'NAH4', 1930682277.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9526 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG trust', 2020.0, 1930751628.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 14242.73, 20200406.0, 'NAA8', 1930751628.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9527 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST us', 2020.0, 1930691506.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 11332.0, 20200325.0, 'NAAX', 1930691506.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9528 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930789597.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 53928.51, 20200416.0, 'NAH4', 1930789597.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9529 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930818782.0, '2020-04-23', 20200423, 20200423, '2020-05-09', 'USD', 'RV', 1.0, 484.44, 20200416.0, 'NAM4', 1930818782.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 9530 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200790107, 'ROU trust', 2020.0, 1930681978.0, '2020-03-20', 20200321, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 46466.72, 20200320.0, 'NAC6', 1930681978.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9531 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930706023.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 82873.57, 20200325.0, 'NAA8', 1930706023.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9532 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR co', 2020.0, 1930815428.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 130046.46, 20200424.0, 'NAA8', 1930815428.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9533 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200797984, 'PIGGLY us', 2020.0, 1930605614.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 49650.21, 20200306.0, 'NAA8', 1930605614.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 9534 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930731886.0, '2020-04-02', 20200402, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 7263.16, 20200402.0, 'NAH4', 1930731886.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9535 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930767196.0, '2020-04-14', 20200409, 20200414, '2020-06-18', 'USD', 'RV', 1.0, 23688.0, 20200414.0, 'NAGD', 1930767196.0, 1, '2020-06-14', 'early' ); /* INSERT QUERY NO: 9536 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930739091.0, '2020-04-06', 20200403, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 12668.17, 20200406.0, 'NAH4', 1930739091.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9537 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930804827.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 32421.47, 20200422.0, 'NAA8', 1930804827.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9538 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104552, 'THE NO llc', 2020.0, 2960623617.0, '2020-03-24', 20200324, 20200324, '2020-04-09', 'CAD', 'RV', 1.0, 64845.21, 20200330.0, 'CA10', 2960623617.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 9539 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930725609.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 13527.7, 20200331.0, 'NAH4', 1930725609.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9540 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW co', 2020.0, 1930800288.0, '2020-04-20', 20200418, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 27995.69, 20200420.0, 'NAA8', 1930800288.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9541 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930716934.0, '2020-03-29', 20200329, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 21540.08, 20200329.0, 'NAH4', 1930716934.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9542 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 100029649, 'LES ENTRE ', 2020.0, 2960632637.0, '2020-05-06', 20200506, 20200506, '2020-05-17', 'CAD', 'RV', 1.0, 14450.0, 20200507.0, 'CA10', 2960632637.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 9543 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930718854.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 37997.11, 20200330.0, 'NAH4', 1930718854.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9544 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- co', 2020.0, 2960621513.0, '2020-03-15', 20200316, 20200315, '2020-04-03', 'CAD', 'RV', 1.0, 181167.62, 20200324.0, 'CA10', 2960621513.0, 1, '2020-04-07', '0-15 days' ); /* INSERT QUERY NO: 9545 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA co', 2020.0, 1930773744.0, '2020-04-15', 20200410, 20200415, '2020-05-05', 'USD', 'RV', 1.0, 11614.23, 20200415.0, 'NAD1', 1930773744.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9546 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930715251.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 18263.11, 20200329.0, 'NAH4', 1930715251.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9547 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200337148, 'COAS corp', 2020.0, 1930689635.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 71169.48, 20200323.0, 'NAA8', 1930689635.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9548 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743129, 'BROOKS systems', 2020.0, 1930739197.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 159379.66, 20200403.0, 'NAA8', 1930739197.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9549 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA corp', 2020.0, 1930879985.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 1575.25, 20200508.0, 'NAA8', 1930879985.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9550 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930814478.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 36992.25, 20200422.0, 'NAH4', 1930814478.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9551 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930686184.0, '2020-03-24', 20200322, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 67469.63, 20200324.0, 'NAH4', 1930686184.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9552 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE corporation', 2020.0, 1930676811.0, '2020-03-23', 20200320, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 65525.64, 20200323.0, 'NAA8', 1930676811.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9553 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA in', 2020.0, 1930813689.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 9187.34, 20200422.0, 'NAA8', 1930813689.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9554 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930811019.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 17494.38, 20200422.0, 'NAA8', 1930811019.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9555 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corporation', 2020.0, 1930811735.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 11760.83, 20200416.0, 'NAM4', 1930811735.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9556 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930585750.0, '2020-03-03', 20200303, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 392.2, 20200303.0, 'NAA8', 1930585750.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9557 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST associates', 2020.0, 1930719716.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 39222.02, 20200330.0, 'NAAX', 1930719716.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9558 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200275115, 'SHAWS llc', 2020.0, 1930780910.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 96694.9, 20200414.0, 'NAA8', 1930780910.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 9559 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930608446.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 17835.27, 20200305.0, 'NAH4', 1930608446.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9560 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930863267.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 17768.8, 20200507.0, 'NAH4', 1930863267.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 9561 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- in', 2020.0, 2960622532.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'CAD', 'RV', 1.0, 71015.72, 20200320.0, 'CA10', 2960622532.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 9562 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER trust', 2020.0, 1930635759.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 19616.36, 20200312.0, 'NAA8', 1930635759.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9563 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD ', 2020.0, 1930598653.0, '2020-03-03', 20200304, 20200303, '2020-03-23', 'USD', 'RV', 1.0, 11304.51, 20200303.0, 'NAD1', 1930598653.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9564 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S systems', 2020.0, 1930777971.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 221.6, 20200412.0, 'NAA8', 1930777971.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9565 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930587897.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 643.56, 20200303.0, 'NAA8', 1930587897.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9566 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200697207, 'WA systems', 2020.0, 1930857104.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 42810.52, 20200504.0, 'NAA8', 1930857104.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 9567 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200230690, 'DECA associates', 2020.0, 1930738185.0, '2020-04-03', 20200403, 20200403, '2020-04-08', 'USD', 'RV', 1.0, 27427.73, 20200401.0, 'NAM1', 1930738185.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9568 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200875006, 'KROGER co', 2020.0, 1930739545.0, '2020-04-09', 20200403, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 31173.16, 20200409.0, 'NAA8', 1930739545.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9569 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930687035.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 13701.6, 20200323.0, 'NAH4', 1930687035.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9570 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930799788.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 8419.69, 20200418.0, 'NAH4', 1930799788.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9571 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930650670.0, '2020-03-15', 20200314, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 41975.1, 20200315.0, 'NAH4', 1930650670.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9572 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930859113.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 11526.92, 20200505.0, 'NAH4', 1930859113.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9573 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER ', 2020.0, 1930781295.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 61623.05, 20200413.0, 'NAA8', 1930781295.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9574 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST associates', 2020.0, 1930687920.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 3756.46, 20200324.0, 'NAAX', 1930687920.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9575 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930723649.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 60402.92, 20200330.0, 'NAH4', 1930723649.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9576 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM co', 2020.0, 1930856924.0, '2020-05-07', 20200504, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 12399.66, 20200507.0, 'NAA8', 1930856924.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9577 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930853366.0, '2020-05-03', 20200503, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 35552.57, 20200503.0, 'NAH4', 1930853366.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9578 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930609851.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 13509.53, 20200306.0, 'NAH4', 1930609851.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9579 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE corporation', 2020.0, 1930875946.0, '2020-05-07', 20200507, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 63567.67, 20200507.0, 'NAA8', 1930875946.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 9580 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE llc', 2020.0, 1930630388.0, '2020-03-10', 20200310, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 15893.27, 20200310.0, 'NAA8', 1930630388.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9581 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930619206.0, '2020-03-07', 20200307, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 52727.9, 20200307.0, 'NAH4', 1930619206.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9582 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930671490.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 8550.01, 20200319.0, 'NAH4', 1930671490.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9583 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930738782.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 15454.34, 20200403.0, 'NAH4', 1930738782.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9584 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930716387.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 8658.0, 20200330.0, 'NAH4', 1930716387.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9585 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930686835.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 5677.41, 20200323.0, 'NAH4', 1930686835.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9586 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930643028.0, '2020-03-12', 20200312, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 31910.36, 20200312.0, 'NAH4', 1930643028.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9587 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM associates', 2020.0, 1930709961.0, '2020-03-30', 20200328, 20200330, '2020-06-03', 'USD', 'RV', 1.0, 26644.8, 20200330.0, 'NAGD', 1930709961.0, 1, '2020-05-29', 'early' ); /* INSERT QUERY NO: 9588 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER systems', 2020.0, 1930741930.0, '2020-04-03', 20200403, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 46199.34, 20200403.0, 'NAA8', 1930741930.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9589 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200720238, 'WOODM corporation', 2020.0, 1930814379.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 63423.06, 20200422.0, 'NAA8', 1930814379.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9590 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930709998.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 31469.68, 20200328.0, 'NAH4', 1930709998.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9591 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930781781.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 52934.14, 20200413.0, 'NAU5', 1930781781.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9592 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930846492.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 14599.85, 20200502.0, 'NAH4', 1930846492.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9593 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930723627.0, '2020-03-30', 20200331, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 67018.3, 20200330.0, 'NAA8', 1930723627.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9594 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100015818, 'MET corp', 2020.0, 2960618115.0, '2020-03-01', 20200301, 20200301, '2020-03-13', 'CAD', 'RV', 1.0, 115304.65, 20200303.0, 'CA10', 2960618115.0, 1, '2020-03-16', '0-15 days' ); /* INSERT QUERY NO: 9595 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200724999, 'GILSTE corporation', 2020.0, 1930710702.0, '2020-03-25', 20200327, 20200325, '2020-04-04', 'USD', 'RV', 1.0, 51663.6, 20200325.0, 'NA10', 1930710702.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9596 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corporation', 2020.0, 1930723475.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 13765.6, 20200331.0, 'NAAX', 1930723475.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9597 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO us', 2020.0, 2960625038.0, '2020-03-30', 20200330, 20200330, '2020-04-11', 'CAD', 'RV', 1.0, 21902.71, 20200401.0, 'CA10', 2960625038.0, 1, '2020-04-14', '0-15 days' ); /* INSERT QUERY NO: 9598 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930768457.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 11982.89, 20200409.0, 'NAH4', 1930768457.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 9599 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0100032791, 'B FERN associates', 2020.0, 1990572307.0, '2020-03-23', 20200323, 20200323, '2020-04-27', 'USD', 'RV', 1.0, 45022.63, 20200323.0, 'NAG2', 1990572307.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 9600 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930768512.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 21379.43, 20200409.0, 'NAAX', 1930768512.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9601 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO in', 2020.0, 2960616661.0, '2020-02-27', 20200227, 20200227, '2020-03-08', 'CAD', 'RV', 1.0, 71183.82, 20200227.0, 'CA10', 2960616661.0, 1, '2020-03-12', '0-15 days' ); /* INSERT QUERY NO: 9602 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM in', 2020.0, 1930859032.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 27810.49, 20200507.0, 'NAA8', 1930859032.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9603 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930570467.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 228.98, 20200227.0, 'NAA8', 1930570467.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 9604 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA corporation', 2020.0, 1930817989.0, '2020-04-23', 20200423, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 61854.8, 20200423.0, 'NAA8', 1930817989.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9605 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930708307.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 40667.78, 20200327.0, 'NAH4', 1930708307.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9606 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200508557, 'FOODL trust', 2020.0, 1930661259.0, '2020-03-26', 20200317, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 1419.88, 20200326.0, 'NAA8', 1930661259.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9607 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO ', 2020.0, 1930641535.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 64303.85, 20200312.0, 'NAA8', 1930641535.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9608 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH us', 2020.0, 1930701773.0, '2020-03-27', 20200325, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 21826.99, 20200327.0, 'NAC6', 1930701773.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9609 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930576136.0, '2020-02-29', 20200226, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 22854.4, 20200229.0, 'NAAX', 1930576136.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 9610 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA systems', 2020.0, 1930758393.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 13789.98, 20200408.0, 'NAH4', 1930758393.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9611 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930844363.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 17211.52, 20200430.0, 'NAAX', 1930844363.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 9612 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930666368.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 116137.83, 20200318.0, 'NAA8', 1930666368.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9613 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER trust', 2020.0, 1930661527.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 86208.27, 20200317.0, 'NAA8', 1930661527.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9614 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930751044.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 168.78, 20200406.0, 'NAH4', 1930751044.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9615 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930733057.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 31740.94, 20200404.0, 'NAH4', 1930733057.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9616 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO us', 2020.0, 1930788104.0, '2020-04-17', 20200414, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 2745.92, 20200417.0, 'NAA8', 1930788104.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 9617 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR ', 2020.0, 1930802683.0, '2020-04-20', 20200420, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 14103.4, 20200420.0, 'NAA8', 1930802683.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9618 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930778693.0, '2020-04-15', 20200412, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 13049.36, 20200415.0, 'NAH4', 1930778693.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9619 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA trust', 2020.0, 1930686356.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1668.01, 20200324.0, 'NAA8', 1930686356.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9620 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930792990.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 7445.41, 20200416.0, 'NAA8', 1930792990.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 9621 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930719744.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 39765.32, 20200330.0, 'NAH4', 1930719744.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9622 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200758883, 'PERFOR foundation', 2020.0, 1930773079.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 31099.44, 20200410.0, 'NAA8', 1930773079.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9623 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR trust', 2020.0, 1930642852.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 56883.02, 20200313.0, 'NAA8', 1930642852.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9624 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA in', 2020.0, 1930774569.0, '2020-04-15', 20200410, 20200415, '2020-05-05', 'USD', 'RV', 1.0, 17414.14, 20200415.0, 'NAD1', 1930774569.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9625 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL llc', 2020.0, 1930733041.0, '2020-04-09', 20200402, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 9690.39, 20200409.0, 'NAA8', 1930733041.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9626 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200999003, 'VALE corporation', 2020.0, 1930648120.0, '2020-03-17', 20200313, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 54980.28, 20200317.0, 'NAA8', 1930648120.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9627 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB ', 2020.0, 2960621244.0, '2020-03-16', 20200316, 20200316, '2020-03-26', 'CAD', 'RV', 1.0, 48188.4, 20200316.0, 'CA10', 2960621244.0, 1, '2020-03-30', '0-15 days' ); /* INSERT QUERY NO: 9628 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930575194.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 123.23, 20200227.0, 'NAH4', 1930575194.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 9629 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763229, 'MAINES llc', 2020.0, 1930886512.0, '2020-05-11', 20200511, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 16099.2, 20200511.0, 'NAA8', 1930886512.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 9630 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN us', 2020.0, 1930710803.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 12638.28, 20200331.0, 'NAA8', 1930710803.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9631 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930671542.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 52890.87, 20200319.0, 'NAA8', 1930671542.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9632 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799367, 'MCL co', 2020.0, 1930810876.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 55175.52, 20200422.0, 'NAA8', 1930810876.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9633 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930853099.0, '2020-05-04', 20200503, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 35324.14, 20200504.0, 'NAH4', 1930853099.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 9634 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930856008.0, '2020-05-06', 20200505, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 18162.95, 20200506.0, 'NAH4', 1930856008.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9635 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S foundation', 2020.0, 1930654898.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 766.89, 20200315.0, 'NAA8', 1930654898.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9636 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT corporation', 2020.0, 1930861539.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 144632.92, 20200506.0, 'NAU5', 1930861539.0, 1, '2020-05-23', '0-15 days' ); /* INSERT QUERY NO: 9637 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200149567, 'RESER corporation', 2020.0, 1930694313.0, '2020-03-25', 20200324, 20200325, '2020-05-09', 'USD', 'RV', 1.0, 84439.15, 20200325.0, 'NABG', 1930694313.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9638 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC foundation', 2020.0, 1930599623.0, '2020-03-04', 20200304, 20200304, '2020-03-11', 'USD', 'RV', 1.0, 2016.46, 20200301.0, 'NAM2', 1930599623.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 9639 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200742521, 'GLA llc', 2020.0, 1930687090.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 41569.43, 20200323.0, 'NAA8', 1930687090.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9640 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200148860, 'DOLLA us', 2020.0, 1930714790.0, '2020-03-28', 20200328, 20200328, '2020-06-01', 'USD', 'RV', 1.0, 31250.34, 20200328.0, 'NAGD', 1930714790.0, 1, '2020-05-29', 'early' ); /* INSERT QUERY NO: 9641 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930789524.0, '2020-04-16', 20200415, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 58108.39, 20200416.0, 'NAH4', 1930789524.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9642 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F in', 2020.0, 1930642399.0, '2020-03-16', 20200312, 20200316, '2020-03-16', 'USD', 'RV', 1.0, 716.7, 20200316.0, 'NAX2', 1930642399.0, 1, '2020-03-22', '0-15 days' ); /* INSERT QUERY NO: 9643 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930605692.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 12507.78, 20200306.0, 'NAH4', 1930605692.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9644 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG corp', 2020.0, 1930721196.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 6834.24, 20200331.0, 'NAA8', 1930721196.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9645 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO ', 2020.0, 1930610419.0, '2020-03-11', 20200305, 20200311, '2020-04-12', 'USD', 'RV', 1.0, 43023.46, 20200311.0, 'NA32', 1930610419.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9646 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930729144.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 33377.72, 20200402.0, 'NAH4', 1930729144.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9647 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930833228.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 5976.32, 20200429.0, 'NAH4', 1930833228.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 9648 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200763152, 'PERFOR corp', 2020.0, 1930685636.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 13687.43, 20200324.0, 'NAA8', 1930685636.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9649 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930818684.0, '2020-04-25', 20200423, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 18941.51, 20200425.0, 'NAC6', 1930818684.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9650 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930578913.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 166.35, 20200228.0, 'NAA8', 1930578913.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 9651 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930709246.0, '2020-03-28', 20200327, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 26779.52, 20200328.0, 'NAH4', 1930709246.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9652 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100001196, 'DOLLAR trust', 2020.0, 1930809128.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 13234.01, 20200423.0, 'NAA8', 1930809128.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9653 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT systems', 2020.0, 1930657234.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 2593.77, 20200316.0, 'NAU5', 1930657234.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9654 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930795403.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 71.46, 20200417.0, 'NAA8', 1930795403.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9655 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200965912, 'C&S W llc', 2020.0, 1930808459.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 73274.38, 20200421.0, 'NAC6', 1930808459.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9656 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930658173.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 8793.09, 20200318.0, 'NAAX', 1930658173.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 9657 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930850056.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 54813.64, 20200504.0, 'NAC6', 1930850056.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9658 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930733414.0, '2020-04-04', 20200402, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 13829.29, 20200404.0, 'NAH4', 1930733414.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9659 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930778352.0, '2020-04-11', 20200411, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 30327.26, 20200411.0, 'NAH4', 1930778352.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9660 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST llc', 2020.0, 1930605211.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 1762.88, 20200306.0, 'NAAX', 1930605211.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 9661 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930713585.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 16170.98, 20200329.0, 'NAH4', 1930713585.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9662 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930624878.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 4171.84, 20200310.0, 'NAH4', 1930624878.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 9663 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB co', 2020.0, 2960631003.0, '2020-04-25', 20200425, 20200425, '2020-05-15', 'CAD', 'RV', 1.0, 93386.81, 20200505.0, 'CA10', 2960631003.0, 1, '2020-05-16', '0-15 days' ); /* INSERT QUERY NO: 9664 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC ', 2020.0, 1930860030.0, '2020-05-05', 20200505, 20200505, '2020-05-11', 'USD', 'RV', 1.0, 6280.88, 20200501.0, 'NAM2', 1930860030.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9665 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200718130, 'SYSCO F associates', 2020.0, 1930665690.0, '2020-03-23', 20200318, 20200323, '2020-04-12', 'USD', 'RV', 1.0, 14525.26, 20200323.0, 'NAD1', 1930665690.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9666 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH systems', 2020.0, 1930801337.0, '2020-04-19', 20200419, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 41369.99, 20200419.0, 'NAC6', 1930801337.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9667 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG us', 2020.0, 1930760316.0, '2020-04-07', 20200407, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 43709.78, 20200407.0, 'NAA8', 1930760316.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9668 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930780385.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 1790.25, 20200414.0, 'NAH4', 1930780385.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9669 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT us', 2020.0, 1930857158.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 7817.94, 20200505.0, 'NAA8', 1930857158.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9670 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT F us', 2020.0, 1930570323.0, '2020-02-27', 20200225, 20200227, '2020-02-27', 'USD', 'RV', 1.0, 17384.64, 20200227.0, 'NAX2', 1930570323.0, 1, '2020-03-03', '0-15 days' ); /* INSERT QUERY NO: 9671 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT associates', 2020.0, 1930662105.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 15318.37, 20200319.0, 'NAA8', 1930662105.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 9672 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200711029, 'WEGMAN systems', 2020.0, 1930645612.0, '2020-03-12', 20200312, 20200312, '2020-05-16', 'USD', 'RV', 1.0, 44353.3, 20200312.0, 'NAGD', 1930645612.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 9673 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO us', 2020.0, 2960624616.0, '2020-03-27', 20200327, 20200327, '2020-04-14', 'CAD', 'RV', 1.0, 86532.82, 20200404.0, 'CA10', 2960624616.0, 1, '2020-04-17', '0-15 days' ); /* INSERT QUERY NO: 9674 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930809100.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 39447.48, 20200422.0, 'NAH4', 1930809100.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9675 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200980828, 'BEN E corporation', 2020.0, 1930670612.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 22483.25, 20200319.0, 'NAA8', 1930670612.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9676 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR associates', 2020.0, 2960619733.0, '2020-03-11', 20200311, 20200311, '2020-03-22', 'CAD', 'RV', 1.0, 69.02, 20200312.0, 'CA10', 2960619733.0, 1, '2020-03-27', '0-15 days' ); /* INSERT QUERY NO: 9677 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930763472.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 6077.91, 20200408.0, 'NAH4', 1930763472.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9678 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG in', 2020.0, 1930777035.0, '2020-04-13', 20200411, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 16828.84, 20200413.0, 'NAA8', 1930777035.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9679 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200722369, 'PERFOR trust', 2020.0, 1930645656.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 52803.07, 20200313.0, 'NAA8', 1930645656.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9680 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930857922.0, '2020-05-06', 20200504, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 6066.25, 20200506.0, 'NAAX', 1930857922.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9681 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930584953.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 661.11, 20200301.0, 'NAH4', 1930584953.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9682 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200750051, 'ALBER foundation', 2020.0, 1930779776.0, '2020-04-12', 20200412, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 130829.21, 20200412.0, 'NAA8', 1930779776.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9683 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG systems', 2020.0, 1930817880.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 7894.97, 20200424.0, 'NAA8', 1930817880.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9684 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA in', 2020.0, 1930769303.0, '2020-04-11', 20200409, 20200411, '2020-05-26', 'USD', 'RV', 1.0, 112139.64, 20200411.0, 'NAWP', 1930769303.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 9685 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930850536.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 27013.58, 20200503.0, 'NAH4', 1930850536.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9686 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200418007, 'AM corporation', 2020.0, 1930849189.0, '2020-05-02', 20200502, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 14475.46, 20200502.0, 'NAA8', 1930849189.0, 1, '2020-05-14', 'early' ); /* INSERT QUERY NO: 9687 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930623244.0, '2020-03-09', 20200309, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 29020.98, 20200309.0, 'NAH4', 1930623244.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9688 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA associates', 2020.0, 1930877844.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 266.16, 20200501.0, 'NAM4', 1930877844.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 9689 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200703398, 'NEX foundation', 2020.0, 1930812651.0, '2020-04-22', 20200422, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 11.88, 20200422.0, 'NAA8', 1930812651.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9690 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930627827.0, '2020-03-09', 20200310, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 1040.51, 20200309.0, 'NAA8', 1930627827.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9691 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930795026.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 31.53, 20200417.0, 'NAH4', 1930795026.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9692 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772595, 'SAFEW llc', 2020.0, 1930710926.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 39852.21, 20200327.0, 'NAA8', 1930710926.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9693 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ co', 2020.0, 1930719173.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 96141.88, 20200330.0, 'NAA8', 1930719173.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9694 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930830709.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 8885.57, 20200428.0, 'NAH4', 1930830709.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 9695 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200999003, 'VALE corporation', 2020.0, 1930818368.0, '2020-04-24', 20200423, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 83853.5, 20200424.0, 'NAA8', 1930818368.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9696 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100057168, 'CO llc', 2020.0, 1930598460.0, '2020-03-05', 20200304, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 115144.05, 20200305.0, 'NAA8', 1930598460.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9697 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH associates', 2020.0, 1930624456.0, '2020-03-10', 20200309, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 22523.37, 20200310.0, 'NAC6', 1930624456.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9698 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930879703.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 11368.98, 20200509.0, 'NAH4', 1930879703.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 9699 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE corp', 2020.0, 1930801033.0, '2020-04-19', 20200418, 20200419, '2020-06-23', 'USD', 'RV', 1.0, 8987.32, 20200419.0, 'NAGD', 1930801033.0, 1, '2020-06-16', 'early' ); /* INSERT QUERY NO: 9700 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930723315.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 52293.12, 20200331.0, 'NAA8', 1930723315.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9701 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100017545, 'PERFOR systems', 2020.0, 1930671087.0, '2020-03-26', 20200319, 20200326, '2020-04-27', 'USD', 'RV', 1.0, 13422.46, 20200326.0, 'NA32', 1930671087.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9702 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE co', 2020.0, 1930850361.0, '2020-05-04', 20200502, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 1784.89, 20200504.0, 'NAA8', 1930850361.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9703 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG foundation', 2020.0, 1930737344.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 18033.56, 20200403.0, 'NAA8', 1930737344.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9704 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO corporation', 2020.0, 2960627998.0, '2020-04-23', 20200423, 20200423, '2020-05-03', 'CAD', 'RV', 1.0, 81561.54, 20200423.0, 'CA10', 2960627998.0, 1, '2020-05-07', '0-15 days' ); /* INSERT QUERY NO: 9705 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH corporation', 2020.0, 1930755270.0, '2020-04-07', 20200406, 20200407, '2020-06-11', 'USD', 'RV', 1.0, 12283.05, 20200407.0, 'NAGD', 1930755270.0, 1, '2020-06-09', 'early' ); /* INSERT QUERY NO: 9706 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930801051.0, '2020-04-18', 20200418, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 42159.48, 20200418.0, 'NAA8', 1930801051.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9707 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC associates', 2020.0, 2960626524.0, '2020-04-03', 20200403, 20200403, '2020-04-21', 'CAD', 'RV', 1.0, 1792.76, 20200411.0, 'CA10', 2960626524.0, 1, '2020-04-27', '0-15 days' ); /* INSERT QUERY NO: 9708 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930700140.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 20802.05, 20200325.0, 'NAH4', 1930700140.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9709 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200794332, 'COST systems', 2020.0, 1930879149.0, '2020-05-07', 20200508, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 2667.71, 20200507.0, 'NAAX', 1930879149.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 9710 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930710524.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 17293.44, 20200327.0, 'NAH4', 1930710524.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9711 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930572401.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 264.45, 20200227.0, 'NAH4', 1930572401.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 9712 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727272, 'BROOKS systems', 2020.0, 1930773960.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 53847.49, 20200410.0, 'NAA8', 1930773960.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9713 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930674463.0, '2020-03-22', 20200320, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 2373.96, 20200322.0, 'NAH4', 1930674463.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9714 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930802486.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 1322.22, 20200421.0, 'NAH4', 1930802486.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9715 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930801875.0, '2020-04-22', 20200420, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 39505.55, 20200422.0, 'NAH4', 1930801875.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9716 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH co', 2020.0, 1930760556.0, '2020-04-09', 20200408, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 9030.33, 20200409.0, 'NAC6', 1930760556.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9717 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200435191, 'C& systems', 2020.0, 1930570809.0, '2020-03-04', 20200302, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 1475.92, 20200304.0, 'NAC6', 1930570809.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9718 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200726979, 'BJ\'S us', 2020.0, 1930664527.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 388.85, 20200318.0, 'NAA8', 1930664527.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9719 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930806384.0, '2020-04-21', 20200421, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 15329.09, 20200421.0, 'NAA8', 1930806384.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9720 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200290370, 'BARGAIN llc', 2020.0, 1930825986.0, '2020-04-28', 20200425, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 12261.68, 20200428.0, 'NAA8', 1930825986.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9721 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG corporation', 2020.0, 1930858201.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 19590.39, 20200505.0, 'NAA8', 1930858201.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9722 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930705021.0, '2020-03-25', 20200326, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 17100.41, 20200325.0, 'NAH4', 1930705021.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9723 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA us', 2020.0, 1930862219.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 33770.37, 20200505.0, 'NAA8', 1930862219.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9724 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG associates', 2020.0, 1930779220.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 23376.24, 20200412.0, 'NAA8', 1930779220.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9725 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA ', 2020.0, 1930622171.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 12193.91, 20200309.0, 'NAA8', 1930622171.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 9726 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO trust', 2020.0, 2960617854.0, '2020-03-02', 20200302, 20200302, '2020-03-13', 'CAD', 'RV', 1.0, 89950.24, 20200303.0, 'CA10', 2960617854.0, 1, '2020-03-18', '0-15 days' ); /* INSERT QUERY NO: 9727 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC in', 2020.0, 1930669222.0, '2020-03-23', 20200318, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 9701.06, 20200323.0, 'NAA8', 1930669222.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9728 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030014, 'BASIX us', 2020.0, 1930823227.0, '2020-04-24', 20200424, 20200424, '2020-05-14', 'USD', 'RV', 1.0, 79959.0, 20200424.0, 'NAD1', 1930823227.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 9729 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200403703, 'H & corp', 2020.0, 1930847486.0, '2020-04-30', 20200501, 20200430, '2020-05-10', 'USD', 'RV', 1.0, 12150.0, 20200430.0, 'NA10', 1930847486.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9730 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD in', 2020.0, 1930664572.0, '2020-03-17', 20200317, 20200317, '2020-04-06', 'USD', 'RV', 1.0, 378.46, 20200317.0, 'NAD1', 1930664572.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9731 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930746931.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 2019.69, 20200405.0, 'NAH4', 1930746931.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9732 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930879997.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 33230.35, 20200509.0, 'NAH4', 1930879997.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 9733 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE associates', 2020.0, 1930717014.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 92783.89, 20200328.0, 'NAA8', 1930717014.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9734 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930671313.0, '2020-03-20', 20200319, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 5180.97, 20200320.0, 'NAC6', 1930671313.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9735 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930776507.0, '2020-04-11', 20200410, 20200411, '2020-04-26', 'USD', 'RV', 1.0, 33137.34, 20200411.0, 'NAH4', 1930776507.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9736 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200792734, 'MDV/ systems', 2020.0, 1930754215.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 24670.26, 20200406.0, 'NAA8', 1930754215.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9737 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG corp', 2020.0, 1930829514.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 7019.14, 20200427.0, 'NAA8', 1930829514.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 9738 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE llc', 2020.0, 1930700286.0, '2020-03-28', 20200326, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 44830.66, 20200328.0, 'NAA8', 1930700286.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9739 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200076137, 'OLLIE trust', 2020.0, 1930622859.0, '2020-03-12', 20200308, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 35916.9, 20200312.0, 'NAA8', 1930622859.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9740 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO systems', 2020.0, 2960625987.0, '2020-04-03', 20200403, 20200403, '2020-04-17', 'CAD', 'RV', 1.0, 3818.2, 20200407.0, 'CA10', 2960625987.0, 1, '2020-04-22', '0-15 days' ); /* INSERT QUERY NO: 9741 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930795403.0, '2020-04-17', 20200416, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 71.46, 20200417.0, 'NAA8', 1930795403.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9742 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200777735, 'NASH ', 2020.0, 1930751097.0, '2020-04-06', 20200405, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 48448.48, 20200406.0, 'NAA8', 1930751097.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9743 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM foundation', 2020.0, 1930763604.0, '2020-04-08', 20200408, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 22019.6, 20200408.0, 'NAA8', 1930763604.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9744 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR ', 2020.0, 1930885514.0, '2020-05-12', 20200510, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 72116.38, 20200512.0, 'NAH4', 1930885514.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 9745 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930612439.0, '2020-03-06', 20200306, 20200306, '2020-03-24', 'USD', 'RV', 1.0, 432.54, 20200301.0, 'NAM4', 1930612439.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9746 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC corp', 2020.0, 1930732708.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 22644.53, 20200401.0, 'NAA8', 1930732708.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9747 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930739382.0, '2020-04-05', 20200403, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 291.69, 20200405.0, 'NAA8', 1930739382.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9748 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930703355.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 582.44, 20200326.0, 'NAH4', 1930703355.0, 1, '2020-04-08', 'early' ); /* INSERT QUERY NO: 9749 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG co', 2020.0, 1930716078.0, '2020-03-28', 20200328, 20200328, '2020-04-12', 'USD', 'RV', 1.0, 110047.78, 20200328.0, 'NAA8', 1930716078.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9750 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200778870, 'C associates', 2020.0, 1930690960.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 127213.4, 20200325.0, 'NAA8', 1930690960.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9751 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930859494.0, '2020-05-08', 20200505, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 14330.78, 20200508.0, 'NAH4', 1930859494.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 9752 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100036039, 'GI co', 2020.0, 1930779941.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 44560.29, 20200413.0, 'NAA8', 1930779941.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9753 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930585789.0, '2020-03-02', 20200303, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 94382.05, 20200302.0, 'NAC6', 1930585789.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9754 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780825, 'SYSCO FO us', 2020.0, 1930638103.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 6218.29, 20200311.0, 'NAA8', 1930638103.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9755 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930783609.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 32304.4, 20200414.0, 'NAH4', 1930783609.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9756 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR corp', 2020.0, 2960618316.0, '2020-03-03', 20200304, 20200303, '2020-03-15', 'CAD', 'RV', 1.0, 1048.4, 20200305.0, 'CA10', 2960618316.0, 1, '2020-03-21', '0-15 days' ); /* INSERT QUERY NO: 9757 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729942, 'SA trust', 2020.0, 1930821779.0, '2020-04-24', 20200424, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 12190.19, 20200424.0, 'NAA8', 1930821779.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9758 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930592616.0, '2020-03-03', 20200302, 20200303, '2020-03-18', 'USD', 'RV', 1.0, 72345.4, 20200303.0, 'NAH4', 1930592616.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 9759 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI foundation', 2020.0, 1930814375.0, '2020-04-24', 20200422, 20200424, '2020-05-09', 'USD', 'RV', 1.0, 22861.43, 20200424.0, 'NAA8', 1930814375.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9760 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930874622.0, '2020-05-08', 20200507, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 15138.46, 20200508.0, 'NAH4', 1930874622.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 9761 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT in', 2020.0, 1930697801.0, '2020-03-26', 20200325, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 92699.95, 20200326.0, 'NAA8', 1930697801.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9762 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930858155.0, '2020-05-11', 20200505, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 2981.6, 20200511.0, 'NAH4', 1930858155.0, 1, '2020-05-24', 'early' ); /* INSERT QUERY NO: 9763 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB corporation', 2020.0, 2960626480.0, '2020-04-06', 20200406, 20200406, '2020-04-18', 'CAD', 'RV', 1.0, 1573.92, 20200408.0, 'CA10', 2960626480.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 9764 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782669, 'SYGMA ', 2020.0, 1930794786.0, '2020-04-22', 20200416, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 7448.63, 20200422.0, 'NAA8', 1930794786.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9765 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200748108, 'KROGER associates', 2020.0, 1930768967.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 43120.87, 20200409.0, 'NAA8', 1930768967.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9766 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743123, 'KROGER systems', 2020.0, 1930613033.0, '2020-03-07', 20200306, 20200307, '2020-03-22', 'USD', 'RV', 1.0, 143184.71, 20200307.0, 'NAA8', 1930613033.0, 1, '2020-03-17', 'early' ); /* INSERT QUERY NO: 9767 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104429, 'COSTCO associates', 2020.0, 2960619413.0, '2020-03-06', 20200306, 20200306, '2020-03-19', 'CAD', 'RV', 1.0, 23015.25, 20200309.0, 'CA10', 2960619413.0, 1, '2020-03-24', '0-15 days' ); /* INSERT QUERY NO: 9768 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930595948.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 3953.23, 20200304.0, 'NAH4', 1930595948.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 9769 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC trust', 2020.0, 1930690690.0, '2020-03-25', 20200324, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 56240.47, 20200325.0, 'NAA8', 1930690690.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9770 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930670755.0, '2020-03-19', 20200319, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 21287.87, 20200319.0, 'NAH4', 1930670755.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9771 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M co', 2020.0, 2960622834.0, '2020-03-21', 20200321, 20200321, '2020-03-31', 'CAD', 'RV', 1.0, 1139.3, 20200321.0, 'CA10', 2960622834.0, 1, '2020-04-03', '0-15 days' ); /* INSERT QUERY NO: 9772 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930701027.0, '2020-03-26', 20200325, 20200326, '2020-04-29', 'USD', 'RV', 1.0, 27872.83, 20200326.0, 'NAAW', 1930701027.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 9773 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930758582.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 1427.14, 20200408.0, 'NAH4', 1930758582.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9774 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200747369, 'SCHNU trust', 2020.0, 1930796594.0, '2020-04-18', 20200417, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 89835.87, 20200418.0, 'NAA8', 1930796594.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9775 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA trust', 2020.0, 1930624332.0, '2020-03-11', 20200309, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 15367.37, 20200311.0, 'NAA8', 1930624332.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9776 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100047527, 'LIDL co', 2020.0, 1930708698.0, '2020-03-30', 20200330, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 5664.64, 20200330.0, 'NAA8', 1930708698.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9777 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200561861, 'CO in', 2020.0, 1930784867.0, '2020-04-16', 20200414, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 33001.81, 20200416.0, 'NAA8', 1930784867.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 9778 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE us', 2020.0, 1930861890.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 99088.16, 20200507.0, 'NAA8', 1930861890.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 9779 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO associates', 2020.0, 2960622656.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'CAD', 'RV', 1.0, 77922.06, 20200320.0, 'CA10', 2960622656.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 9780 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930694321.0, '2020-03-25', 20200325, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 25299.06, 20200325.0, 'NAA8', 1930694321.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9781 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100031704, 'DELHAIZE foundation', 2020.0, 1930801633.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 3437.0, 20200420.0, 'NAA8', 1930801633.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9782 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI co', 2020.0, 1930578891.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 63885.28, 20200227.0, 'NAA8', 1930578891.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 9783 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI in', 2020.0, 1930808669.0, '2020-04-22', 20200421, 20200422, '2020-05-07', 'USD', 'RV', 1.0, 96868.72, 20200422.0, 'NAA8', 1930808669.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9784 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930809089.0, '2020-04-23', 20200421, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 16165.06, 20200423.0, 'NAH4', 1930809089.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9785 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S ', 2020.0, 1930688755.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1284.91, 20200324.0, 'NAA8', 1930688755.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9786 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930632636.0, '2020-03-11', 20200310, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 11468.69, 20200311.0, 'NAH4', 1930632636.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9787 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930622279.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 17193.7, 20200309.0, 'NAH4', 1930622279.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9788 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM corp', 2020.0, 1930834236.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 923.65, 20200430.0, 'NAA8', 1930834236.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9789 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930722927.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 15090.16, 20200331.0, 'NAH4', 1930722927.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9790 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930709049.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 45851.39, 20200327.0, 'NAA8', 1930709049.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9791 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO corp', 2020.0, 1930686672.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 86801.58, 20200323.0, 'NAA8', 1930686672.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9792 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930718608.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 51024.9, 20200330.0, 'NAH4', 1930718608.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9793 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA associates', 2020.0, 1930577306.0, '2020-02-27', 20200227, 20200227, '2020-05-02', 'USD', 'RV', 1.0, 3273.67, 20200227.0, 'NAGD', 1930577306.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9794 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930705012.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 4943.74, 20200327.0, 'NAAX', 1930705012.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9795 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200353024, 'DECA trust', 2020.0, 1930875684.0, '2020-05-08', 20200508, 20200508, '2020-05-24', 'USD', 'RV', 1.0, 139.8, 20200501.0, 'NAM4', 1930875684.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 9796 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO co', 2020.0, 2960627740.0, '2020-04-09', 20200409, 20200409, '2020-04-28', 'CAD', 'RV', 1.0, 51194.37, 20200418.0, 'CA10', 2960627740.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 9797 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corp', 2020.0, 1930686454.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 156136.26, 20200323.0, 'NAA8', 1930686454.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9798 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT ', 2020.0, 1930638263.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 3374.34, 20200311.0, 'NAA8', 1930638263.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9799 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930726318.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 2667.22, 20200331.0, 'NAAX', 1930726318.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9800 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200723794, 'MID MO foundation', 2020.0, 1930781788.0, '2020-04-13', 20200414, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 8776.93, 20200413.0, 'NAA8', 1930781788.0, 1, '2020-04-22', 'early' ); /* INSERT QUERY NO: 9801 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200761734, 'H E BUT systems', 2020.0, 1930787824.0, '2020-04-15', 20200415, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 7541.08, 20200415.0, 'NAA8', 1930787824.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 9802 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200793568, 'SUPE co', 2020.0, 1930657243.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 8844.35, 20200316.0, 'NAA8', 1930657243.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9803 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104225, 'SAVE-ON- foundation', 2020.0, 2960624339.0, '2020-03-25', 20200325, 20200325, '2020-04-04', 'CAD', 'RV', 1.0, 131755.09, 20200325.0, 'CA10', 2960624339.0, 1, '2020-04-08', '0-15 days' ); /* INSERT QUERY NO: 9804 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR foundation', 2020.0, 1930884198.0, '2020-05-11', 20200510, 20200511, '2020-05-26', 'USD', 'RV', 1.0, 68190.69, 20200511.0, 'NAH4', 1930884198.0, 1, '2020-05-27', '0-15 days' ); /* INSERT QUERY NO: 9805 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100030443, 'GLACIE us', 2020.0, 1930794450.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 4310.37, 20200416.0, 'NAA8', 1930794450.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9806 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769369, 'DI ', 2020.0, 1930617962.0, '2020-03-09', 20200307, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 15369.08, 20200309.0, 'NAA8', 1930617962.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9807 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779051, 'AFFILI ', 2020.0, 1930780886.0, '2020-04-13', 20200413, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 75348.59, 20200413.0, 'NAA8', 1930780886.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9808 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR us', 2020.0, 1930881200.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 7618.05, 20200509.0, 'NAH4', 1930881200.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 9809 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704045, 'RA ', 2020.0, 1930692843.0, '2020-03-26', 20200324, 20200326, '2020-04-10', 'USD', 'RV', 1.0, 41076.89, 20200326.0, 'NAA8', 1930692843.0, 1, '2020-04-04', 'early' ); /* INSERT QUERY NO: 9810 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT trust', 2020.0, 1930676460.0, '2020-03-23', 20200320, 20200323, '2020-04-27', 'USD', 'RV', 1.0, 32331.78, 20200323.0, 'NAG2', 1930676460.0, 1, '2020-04-26', 'early' ); /* INSERT QUERY NO: 9811 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930724230.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 91.93, 20200401.0, 'NAH4', 1930724230.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9812 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200759878, 'SA trust', 2020.0, 1930647725.0, '2020-03-14', 20200313, 20200314, '2020-05-18', 'USD', 'RV', 1.0, 12369.34, 20200314.0, 'NAGD', 1930647725.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9813 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0100030194, 'AMAZO trust', 2020.0, 2960629351.0, '2020-04-19', 20200419, 20200419, '2020-05-08', 'CAD', 'RV', 1.0, 7569.19, 20200428.0, 'CA10', 2960629351.0, 1, '2020-05-12', '0-15 days' ); /* INSERT QUERY NO: 9814 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930847135.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 15239.76, 20200503.0, 'NAH4', 1930847135.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9815 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE systems', 2020.0, 1930654714.0, '2020-03-17', 20200315, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 49761.46, 20200317.0, 'NAA8', 1930654714.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9816 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930827508.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 16431.0, 20200426.0, 'NAH4', 1930827508.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9817 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930834543.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 4029.56, 20200429.0, 'NAH4', 1930834543.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 9818 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200739534, 'OK co', 2020.0, 1930731133.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 98252.64, 20200401.0, 'NAA8', 1930731133.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9819 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930706914.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 57462.52, 20200327.0, 'NAC6', 1930706914.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9820 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200777735, 'NASH associates', 2020.0, 1930687933.0, '2020-03-23', 20200323, 20200323, '2020-05-27', 'USD', 'RV', 1.0, 33389.2, 20200323.0, 'NAGD', 1930687933.0, 1, '2020-05-23', 'early' ); /* INSERT QUERY NO: 9821 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200741174, 'M B foundation', 2020.0, 1930609597.0, '2020-03-13', 20200306, 20200313, '2020-04-02', 'USD', 'RV', 1.0, 18151.6, 20200313.0, 'NAD1', 1930609597.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9822 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200152991, 'JET systems', 2020.0, 1930666265.0, '2020-03-18', 20200318, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 298.1, 20200318.0, 'NAA8', 1930666265.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9823 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793568, 'SUPE in', 2020.0, 1930795019.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 71934.4, 20200416.0, 'NAA8', 1930795019.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9824 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST ', 2020.0, 1930772403.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 39964.01, 20200409.0, 'NAAX', 1930772403.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9825 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200799538, 'UNITE foundation', 2020.0, 1930783705.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 56952.73, 20200414.0, 'NAA8', 1930783705.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9826 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104249, 'SOB co', 2020.0, 2960625427.0, '2020-04-02', 20200402, 20200402, '2020-04-20', 'CAD', 'RV', 1.0, 41003.77, 20200410.0, 'CA10', 2960625427.0, 1, '2020-04-25', '0-15 days' ); /* INSERT QUERY NO: 9827 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739534, 'OK llc', 2020.0, 1930748448.0, '2020-04-04', 20200404, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 83887.79, 20200404.0, 'NAA8', 1930748448.0, 1, '2020-04-14', 'early' ); /* INSERT QUERY NO: 9828 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200775094, 'SAVE M trust', 2020.0, 1930731946.0, '2020-04-01', 20200402, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 35133.3, 20200401.0, 'NAA8', 1930731946.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9829 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE foundation', 2020.0, 1930829016.0, '2020-04-27', 20200426, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 154484.42, 20200427.0, 'NAA8', 1930829016.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9830 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930623141.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 71.46, 20200309.0, 'NAA8', 1930623141.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9831 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100000222, 'SMITHFIE foundation', 2020.0, 1930638067.0, '2020-03-12', 20200311, 20200312, '2020-03-27', 'USD', 'RV', 1.0, 47654.46, 20200312.0, 'NAA8', 1930638067.0, 1, '2020-03-19', 'early' ); /* INSERT QUERY NO: 9832 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930847471.0, '2020-05-02', 20200501, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 20284.1, 20200502.0, 'NAH4', 1930847471.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9833 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200706844, 'WINC us', 2020.0, 1930811099.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 32595.28, 20200423.0, 'NAA8', 1930811099.0, 1, '2020-05-03', 'early' ); /* INSERT QUERY NO: 9834 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200793513, 'KROGER corp', 2020.0, 1930803478.0, '2020-04-21', 20200420, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 12551.1, 20200421.0, 'NAA8', 1930803478.0, 1, '2020-05-02', 'early' ); /* INSERT QUERY NO: 9835 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U002', 0200501669, 'WAL MA ', 2020.0, 1990571906.0, '2020-03-11', 20200310, 20200311, '2020-04-15', 'USD', 'RV', 1.0, 21552.0, 20200311.0, 'NAG2', 1990571906.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 9836 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200020431, 'DEC ', 2020.0, 1930599546.0, '2020-03-04', 20200304, 20200304, '2020-03-24', 'USD', 'RV', 1.0, 4685.02, 20200301.0, 'NAM4', 1930599546.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9837 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105847, 'GORDON F corp', 2020.0, 2960618490.0, '2020-03-09', 20200309, 20200309, '2020-03-20', 'CAD', 'RV', 1.0, 1609.9, 20200310.0, 'CA10', 2960618490.0, 1, '2020-03-25', '0-15 days' ); /* INSERT QUERY NO: 9838 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930834269.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 39242.24, 20200429.0, 'NAH4', 1930834269.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 9839 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA us', 2020.0, 1930779948.0, '2020-04-13', 20200413, 20200413, '2020-06-17', 'USD', 'RV', 1.0, 5832.77, 20200413.0, 'NAGD', 1930779948.0, 1, '2020-06-12', 'early' ); /* INSERT QUERY NO: 9840 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI associates', 2020.0, 1930600073.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 127360.99, 20200304.0, 'NAA8', 1930600073.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9841 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO in', 2020.0, 2960622459.0, '2020-03-20', 20200320, 20200320, '2020-03-30', 'CAD', 'RV', 1.0, 88532.37, 20200320.0, 'CA10', 2960622459.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 9842 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104472, 'MARTIN corp', 2020.0, 2960621656.0, '2020-03-17', 20200317, 20200317, '2020-04-05', 'CAD', 'RV', 1.0, 6532.92, 20200326.0, 'CA10', 2960621656.0, 1, '2020-04-11', '0-15 days' ); /* INSERT QUERY NO: 9843 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT llc', 2020.0, 1930797843.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 85544.46, 20200417.0, 'NAU5', 1930797843.0, 1, '2020-05-03', '0-15 days' ); /* INSERT QUERY NO: 9844 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO co', 2020.0, 1930627834.0, '2020-03-12', 20200310, 20200312, '2020-04-13', 'USD', 'RV', 1.0, 510.31, 20200312.0, 'NA32', 1930627834.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9845 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930870247.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 21252.77, 20200507.0, 'NAH4', 1930870247.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 9846 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930718160.0, '2020-03-30', 20200329, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 33723.29, 20200330.0, 'NAH4', 1930718160.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9847 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930781880.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 4619.62, 20200414.0, 'NAH4', 1930781880.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9848 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930837755.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 3794.77, 20200430.0, 'NAH4', 1930837755.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 9849 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200877212, 'SHER llc', 2020.0, 1930647425.0, '2020-03-13', 20200313, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 10164.6, 20200313.0, 'NAA8', 1930647425.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9850 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT ', 2020.0, 1930773288.0, '2020-04-09', 20200410, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 7903.04, 20200409.0, 'NAU5', 1930773288.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9851 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930801573.0, '2020-04-21', 20200419, 20200421, '2020-05-06', 'USD', 'RV', 1.0, 13897.88, 20200421.0, 'NAH4', 1930801573.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9852 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930724163.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 22917.56, 20200331.0, 'NAH4', 1930724163.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9853 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ corporation', 2020.0, 1930839311.0, '2020-04-29', 20200429, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 50674.27, 20200429.0, 'NAA8', 1930839311.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 9854 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930862481.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 58881.98, 20200506.0, 'NAH4', 1930862481.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9855 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930751286.0, '2020-04-05', 20200405, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 58102.09, 20200405.0, 'NAH4', 1930751286.0, 1, '2020-04-18', 'early' ); /* INSERT QUERY NO: 9856 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 100031704, 'DELHAIZE corp', 2020.0, 1930879279.0, '2020-05-08', 20200508, 20200508, '2020-05-23', 'USD', 'RV', 1.0, 56487.28, 20200508.0, 'NAA8', 1930879279.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9857 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930794024.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 117.59, 20200416.0, 'NAH4', 1930794024.0, 1, '2020-04-30', 'early' ); /* INSERT QUERY NO: 9858 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930598697.0, '2020-03-04', 20200304, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 3797.1, 20200304.0, 'NAH4', 1930598697.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 9859 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC co', 2020.0, 1930617827.0, '2020-03-07', 20200307, 20200307, '2020-03-24', 'USD', 'RV', 1.0, 2611.64, 20200301.0, 'NAM4', 1930617827.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9860 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930856865.0, '2020-05-05', 20200504, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 5756.77, 20200505.0, 'NAH4', 1930856865.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9861 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200729290, 'KROGER trust', 2020.0, 1930660383.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 132130.7, 20200317.0, 'NAA8', 1930660383.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9862 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200148860, 'DOLLA systems', 2020.0, 1930749404.0, '2020-04-05', 20200404, 20200405, '2020-06-09', 'USD', 'RV', 1.0, 1691.84, 20200405.0, 'NAGD', 1930749404.0, 1, '2020-06-04', 'early' ); /* INSERT QUERY NO: 9863 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930857274.0, '2020-05-04', 20200504, 20200504, '2020-05-19', 'USD', 'RV', 1.0, 2357.81, 20200504.0, 'NAH4', 1930857274.0, 1, '2020-05-18', 'early' ); /* INSERT QUERY NO: 9864 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S trust', 2020.0, 1930584184.0, '2020-03-02', 20200229, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 268.56, 20200302.0, 'NAA8', 1930584184.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 9865 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA co', 2020.0, 1930726529.0, '2020-04-03', 20200331, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 13416.05, 20200403.0, 'NAH4', 1930726529.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9866 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100000161, 'THE W llc', 2020.0, 1930837960.0, '2020-05-01', 20200429, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 1865.92, 20200501.0, 'NAA8', 1930837960.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9867 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930730051.0, '2020-04-01', 20200401, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 43494.11, 20200401.0, 'NAH4', 1930730051.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9868 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930593307.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 7668.56, 20200304.0, 'NAH4', 1930593307.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 9869 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930692531.0, '2020-03-25', 20200324, 20200325, '2020-04-28', 'USD', 'RV', 1.0, 14025.09, 20200325.0, 'NAAW', 1930692531.0, 1, '2020-04-21', 'early' ); /* INSERT QUERY NO: 9870 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ systems', 2020.0, 1930793192.0, '2020-04-16', 20200416, 20200416, '2020-05-01', 'USD', 'RV', 1.0, 129657.56, 20200416.0, 'NAA8', 1930793192.0, 1, '2020-04-27', 'early' ); /* INSERT QUERY NO: 9871 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930681930.0, '2020-03-20', 20200320, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 46168.85, 20200320.0, 'NAH4', 1930681930.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9872 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930801744.0, '2020-04-20', 20200419, 20200420, '2020-05-05', 'USD', 'RV', 1.0, 5160.61, 20200420.0, 'NAH4', 1930801744.0, 1, '2020-05-04', 'early' ); /* INSERT QUERY NO: 9873 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST trust', 2020.0, 1930607537.0, '2020-03-10', 20200305, 20200310, '2020-03-25', 'USD', 'RV', 1.0, 3863.93, 20200310.0, 'NAAX', 1930607537.0, 1, '2020-03-21', 'early' ); /* INSERT QUERY NO: 9874 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200792293, 'UNIFIE trust', 2020.0, 1930583796.0, '2020-03-01', 20200229, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 3927.36, 20200301.0, 'NAA8', 1930583796.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 9875 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930718057.0, '2020-04-01', 20200329, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 9765.7, 20200401.0, 'NAH4', 1930718057.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9876 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT foundation', 2020.0, 1930723924.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 2974.54, 20200331.0, 'NAU5', 1930723924.0, 1, '2020-04-13', 'early' ); /* INSERT QUERY NO: 9877 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200721222, 'GO in', 2020.0, 1930687272.0, '2020-03-23', 20200323, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 57529.3, 20200323.0, 'NAA8', 1930687272.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9878 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR corporation', 2020.0, 1930878385.0, '2020-05-09', 20200508, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 5976.32, 20200509.0, 'NAH4', 1930878385.0, 1, '2020-05-25', '0-15 days' ); /* INSERT QUERY NO: 9879 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104440, 'SO foundation', 2020.0, 2960626947.0, '2020-04-06', 20200406, 20200406, '2020-04-18', 'CAD', 'RV', 1.0, 53871.74, 20200408.0, 'CA10', 2960626947.0, 1, '2020-04-23', '0-15 days' ); /* INSERT QUERY NO: 9880 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104409, 'LOB llc', 2020.0, 2960631944.0, '2020-04-30', 20200430, 20200430, '2020-05-11', 'CAD', 'RV', 1.0, 54142.6, 20200501.0, 'CA10', 2960631944.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 9881 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930718681.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 4305.04, 20200331.0, 'NAH4', 1930718681.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9882 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S co', 2020.0, 1930654592.0, '2020-03-16', 20200316, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 508.67, 20200316.0, 'NAA8', 1930654592.0, 1, '2020-03-25', 'early' ); /* INSERT QUERY NO: 9883 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT trust', 2020.0, 1930826894.0, '2020-04-25', 20200425, 20200425, '2020-05-15', 'USD', 'RV', 1.0, 14565.55, 20200425.0, 'NAD1', 1930826894.0, 1, '2020-05-11', 'early' ); /* INSERT QUERY NO: 9884 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930684850.0, '2020-03-22', 20200322, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 2373.96, 20200322.0, 'NAH4', 1930684850.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9885 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200799367, 'MCL associates', 2020.0, 1930647096.0, '2020-03-17', 20200313, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 31223.14, 20200317.0, 'NAA8', 1930647096.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9886 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930775784.0, '2020-04-12', 20200411, 20200412, '2020-04-27', 'USD', 'RV', 1.0, 74096.96, 20200412.0, 'NAH4', 1930775784.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9887 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930661432.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 65369.61, 20200319.0, 'NAH4', 1930661432.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9888 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930738037.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 2939.03, 20200403.0, 'NAH4', 1930738037.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9889 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930829804.0, '2020-04-28', 20200427, 20200428, '2020-05-13', 'USD', 'RV', 1.0, 5283.98, 20200428.0, 'NAC6', 1930829804.0, 1, '2020-05-09', 'early' ); /* INSERT QUERY NO: 9890 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930651128.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 2019.69, 20200314.0, 'NAH4', 1930651128.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9891 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930586202.0, '2020-03-02', 20200301, 20200302, '2020-03-17', 'USD', 'RV', 1.0, 407.8, 20200302.0, 'NAH4', 1930586202.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9892 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930826723.0, '2020-04-26', 20200425, 20200426, '2020-05-11', 'USD', 'RV', 1.0, 14625.0, 20200426.0, 'NAH4', 1930826723.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9893 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106099, 'SOCIETE foundation', 2020.0, 2960625277.0, '2020-04-01', 20200401, 20200401, '2020-04-13', 'CAD', 'RV', 1.0, 52211.1, 20200403.0, 'CA10', 2960625277.0, 1, '2020-04-18', '0-15 days' ); /* INSERT QUERY NO: 9894 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930786394.0, '2020-04-15', 20200414, 20200415, '2020-04-30', 'USD', 'RV', 1.0, 3784.5, 20200415.0, 'NAH4', 1930786394.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9895 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ ', 2020.0, 1930654241.0, '2020-03-15', 20200316, 20200315, '2020-03-30', 'USD', 'RV', 1.0, 43246.17, 20200315.0, 'NAA8', 1930654241.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9896 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST corp', 2020.0, 1930618768.0, '2020-03-08', 20200307, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 34854.89, 20200308.0, 'NAAX', 1930618768.0, 1, '2020-03-18', 'early' ); /* INSERT QUERY NO: 9897 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705089, 'JETR llc', 2020.0, 1930754318.0, '2020-04-07', 20200406, 20200407, '2020-04-22', 'USD', 'RV', 1.0, 10920.48, 20200407.0, 'NAA8', 1930754318.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9898 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER co', 2020.0, 1930683102.0, '2020-03-23', 20200321, 20200323, '2020-04-07', 'USD', 'RV', 1.0, 50112.07, 20200323.0, 'NAA8', 1930683102.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9899 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705372, 'FR co', 2020.0, 1930593439.0, '2020-03-04', 20200303, 20200304, '2020-03-19', 'USD', 'RV', 1.0, 126039.35, 20200304.0, 'NAA8', 1930593439.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9900 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200974851, 'RESTA corp', 2020.0, 1930708287.0, '2020-03-27', 20200326, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 1507.1, 20200327.0, 'NAA8', 1930708287.0, 1, '2020-04-07', 'early' ); /* INSERT QUERY NO: 9901 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930637494.0, '2020-03-11', 20200311, 20200311, '2020-03-26', 'USD', 'RV', 1.0, 7955.79, 20200311.0, 'NAH4', 1930637494.0, 1, '2020-03-24', 'early' ); /* INSERT QUERY NO: 9902 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930822454.0, '2020-04-23', 20200424, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 45569.56, 20200423.0, 'NAH4', 1930822454.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9903 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200514741, 'LIDE in', 2020.0, 1930623391.0, '2020-03-09', 20200309, 20200309, '2020-05-08', 'USD', 'RV', 1.0, 138364.2, 20200309.0, 'NAVQ', 1930623391.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 9904 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200236583, 'REQU associates', 2020.0, 1930624182.0, '2020-03-11', 20200309, 20200311, '2020-03-21', 'USD', 'RV', 1.0, 71284.05, 20200311.0, 'NA10', 1930624182.0, 1, '2020-03-13', 'early' ); /* INSERT QUERY NO: 9905 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS co', 2020.0, 1930798265.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 50314.55, 20200417.0, 'NAA8', 1930798265.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9906 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200786288, 'FAMILY us', 2020.0, 1930778721.0, '2020-04-13', 20200412, 20200413, '2020-04-28', 'USD', 'RV', 1.0, 48731.69, 20200413.0, 'NAC6', 1930778721.0, 1, '2020-04-24', 'early' ); /* INSERT QUERY NO: 9907 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930576738.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 1898.9, 20200228.0, 'NAH4', 1930576738.0, 1, '2020-03-12', 'early' ); /* INSERT QUERY NO: 9908 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC systems', 2020.0, 2960619725.0, '2020-03-11', 20200311, 20200311, '2020-03-28', 'CAD', 'RV', 1.0, 11876.83, 20200318.0, 'CA10', 2960619725.0, 1, '2020-04-02', '0-15 days' ); /* INSERT QUERY NO: 9909 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200416837, 'DEC corporation', 2020.0, 1930812700.0, '2020-04-22', 20200422, 20200422, '2020-05-09', 'USD', 'RV', 1.0, 11426.29, 20200416.0, 'NAM4', 1930812700.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9910 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200743996, 'STATER foundation', 2020.0, 1930739508.0, '2020-04-04', 20200403, 20200404, '2020-06-08', 'USD', 'RV', 1.0, 68715.83, 20200404.0, 'NAGD', 1930739508.0, 1, '2020-06-07', 'early' ); /* INSERT QUERY NO: 9911 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930729437.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 33867.68, 20200402.0, 'NAH4', 1930729437.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9912 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930719233.0, '2020-04-01', 20200330, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 55853.92, 20200401.0, 'NAH4', 1930719233.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9913 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200076137, 'OLLIE co', 2020.0, 1930855970.0, '2020-05-10', 20200504, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 10472.0, 20200510.0, 'NAA8', 1930855970.0, 1, '2020-05-21', 'early' ); /* INSERT QUERY NO: 9914 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200794332, 'COST foundation', 2020.0, 1930709052.0, '2020-03-31', 20200330, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 14772.55, 20200331.0, 'NAAX', 1930709052.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9915 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930773681.0, '2020-04-10', 20200410, 20200410, '2020-04-25', 'USD', 'RV', 1.0, 1377.15, 20200410.0, 'NAA8', 1930773681.0, 1, '2020-04-20', 'early' ); /* INSERT QUERY NO: 9916 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200382900, 'J & J foundation', 2020.0, 1930857995.0, '2020-05-05', 20200505, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 70023.19, 20200505.0, 'NAA8', 1930857995.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9917 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930797740.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 5711.68, 20200417.0, 'NAH4', 1930797740.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9918 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930839111.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 21984.22, 20200430.0, 'NAH4', 1930839111.0, 1, '2020-05-13', 'early' ); /* INSERT QUERY NO: 9919 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930686982.0, '2020-03-24', 20200323, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 35094.8, 20200324.0, 'NAH4', 1930686982.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9920 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930833455.0, '2020-04-29', 20200428, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 8968.68, 20200429.0, 'NAH4', 1930833455.0, 1, '2020-05-12', 'early' ); /* INSERT QUERY NO: 9921 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200754118, 'ARMY ', 2020.0, 1930855724.0, '2020-05-04', 20200504, 20200504, '2020-03-16', 'USD', 'RV', 1.0, 60.81, 20200301.0, 'NAM3', 1930855724.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 9922 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ associates', 2020.0, 1930831434.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 24059.83, 20200427.0, 'NAA8', 1930831434.0, 1, '2020-05-07', 'early' ); /* INSERT QUERY NO: 9923 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE ', 2020.0, 1930580308.0, '2020-02-28', 20200227, 20200228, '2020-03-14', 'USD', 'RV', 1.0, 15634.49, 20200228.0, 'NAA8', 1930580308.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 9924 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930851032.0, '2020-05-03', 20200502, 20200503, '2020-05-18', 'USD', 'RV', 1.0, 56706.92, 20200503.0, 'NAH4', 1930851032.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9925 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106408, 'WAL-M trust', 2020.0, 2960623166.0, '2020-03-22', 20200322, 20200322, '2020-04-01', 'CAD', 'RV', 1.0, 7356.45, 20200322.0, 'CA10', 2960623166.0, 1, '2020-04-05', '0-15 days' ); /* INSERT QUERY NO: 9926 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104340, 'COLABOR associates', 2020.0, 2960624347.0, '2020-03-26', 20200326, 20200326, '2020-04-06', 'CAD', 'RV', 1.0, 2953.96, 20200327.0, 'CA10', 2960624347.0, 1, '2020-04-10', '0-15 days' ); /* INSERT QUERY NO: 9927 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0, 'KRAFT llc', 2020.0, 1930580635.0, '2020-02-28', 20200227, 20200228, '2020-04-03', 'USD', 'RV', 1.0, 15498.23, 20200228.0, 'NAG2', 1930580635.0, 1, '2020-04-02', 'early' ); /* INSERT QUERY NO: 9928 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200772670, 'ASSOCIAT associates', 2020.0, 1930711983.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 74834.34, 20200327.0, 'NAU5', 1930711983.0, 1, '2020-04-12', '0-15 days' ); /* INSERT QUERY NO: 9929 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC corporation', 2020.0, 1930691769.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 1822.26, 20200316.0, 'NAM4', 1930691769.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9930 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ trust', 2020.0, 1930768941.0, '2020-04-09', 20200409, 20200409, '2020-04-24', 'USD', 'RV', 1.0, 88313.18, 20200409.0, 'NAA8', 1930768941.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9931 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930669947.0, '2020-03-19', 20200318, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 2373.96, 20200319.0, 'NAH4', 1930669947.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9932 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200337148, 'COAS llc', 2020.0, 1930687966.0, '2020-03-25', 20200323, 20200325, '2020-04-09', 'USD', 'RV', 1.0, 9562.52, 20200325.0, 'NAA8', 1930687966.0, 1, '2020-04-05', 'early' ); /* INSERT QUERY NO: 9933 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930873182.0, '2020-05-09', 20200507, 20200509, '2020-05-24', 'USD', 'RV', 1.0, 9799.51, 20200509.0, 'NAH4', 1930873182.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 9934 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200526831, 'PERISH foundation', 2020.0, 1930576978.0, '2020-02-27', 20200227, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 92292.3, 20200227.0, 'NAA8', 1930576978.0, 1, '2020-03-07', 'early' ); /* INSERT QUERY NO: 9935 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140106209, 'SNOW C in', 2020.0, 2960618245.0, '2020-03-02', 20200302, 20200302, '2020-03-21', 'CAD', 'RV', 1.0, 84752.7, 20200311.0, 'CA10', 2960618245.0, 1, '2020-03-28', '0-15 days' ); /* INSERT QUERY NO: 9936 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR ', 2020.0, 1930859619.0, '2020-05-07', 20200505, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 2237.43, 20200507.0, 'NAH4', 1930859619.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 9937 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE co', 2020.0, 1930760524.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 54667.18, 20200408.0, 'NAA8', 1930760524.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9938 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200743129, 'BROOKS trust', 2020.0, 1930862202.0, '2020-05-05', 20200506, 20200505, '2020-05-20', 'USD', 'RV', 1.0, 45951.01, 20200505.0, 'NAA8', 1930862202.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9939 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA associates', 2020.0, 1930664507.0, '2020-03-19', 20200317, 20200319, '2020-04-03', 'USD', 'RV', 1.0, 27350.55, 20200319.0, 'NAH4', 1930664507.0, 1, '2020-04-01', 'early' ); /* INSERT QUERY NO: 9940 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200781803, 'JRD corp', 2020.0, 1930737923.0, '2020-04-02', 20200402, 20200402, '2020-04-22', 'USD', 'RV', 1.0, 5697.09, 20200402.0, 'NAD1', 1930737923.0, 1, '2020-04-19', 'early' ); /* INSERT QUERY NO: 9941 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930883143.0, '2020-05-10', 20200509, 20200510, '2020-05-25', 'USD', 'RV', 1.0, 923.28, 20200510.0, 'NAH4', 1930883143.0, 1, '2020-05-22', 'early' ); /* INSERT QUERY NO: 9942 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI ', 2020.0, 1930586005.0, '2020-03-01', 20200301, 20200301, '2020-03-16', 'USD', 'RV', 1.0, 79805.9, 20200301.0, 'NAA8', 1930586005.0, 1, '2020-03-10', 'early' ); /* INSERT QUERY NO: 9943 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930710198.0, '2020-03-30', 20200328, 20200330, '2020-04-14', 'USD', 'RV', 1.0, 19990.58, 20200330.0, 'NAH4', 1930710198.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9944 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200774000, 'RALEY associates', 2020.0, 1930709333.0, '2020-03-27', 20200327, 20200327, '2020-04-11', 'USD', 'RV', 1.0, 75719.71, 20200327.0, 'NAA8', 1930709333.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9945 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI trust', 2020.0, 1930801398.0, '2020-04-19', 20200420, 20200419, '2020-05-04', 'USD', 'RV', 1.0, 101429.4, 20200419.0, 'NAA8', 1930801398.0, 1, '2020-04-28', 'early' ); /* INSERT QUERY NO: 9946 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930839079.0, '2020-05-02', 20200430, 20200502, '2020-05-17', 'USD', 'RV', 1.0, 13694.28, 20200502.0, 'NAH4', 1930839079.0, 1, '2020-05-16', 'early' ); /* INSERT QUERY NO: 9947 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR foundation', 2020.0, 1930622258.0, '2020-03-09', 20200308, 20200309, '2020-03-24', 'USD', 'RV', 1.0, 6582.84, 20200309.0, 'NAH4', 1930622258.0, 1, '2020-03-22', 'early' ); /* INSERT QUERY NO: 9948 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI corporation', 2020.0, 1930750693.0, '2020-04-06', 20200406, 20200406, '2020-04-21', 'USD', 'RV', 1.0, 59395.42, 20200406.0, 'NAA8', 1930750693.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 9949 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA corp', 2020.0, 1930717427.0, '2020-03-29', 20200328, 20200329, '2020-04-13', 'USD', 'RV', 1.0, 5728.99, 20200329.0, 'NAH4', 1930717427.0, 1, '2020-04-10', 'early' ); /* INSERT QUERY NO: 9950 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200771157, 'WEIS associates', 2020.0, 1930748542.0, '2020-04-05', 20200404, 20200405, '2020-04-20', 'USD', 'RV', 1.0, 45878.96, 20200405.0, 'NAA8', 1930748542.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9951 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200936373, 'SUPE in', 2020.0, 1930791286.0, '2020-04-17', 20200415, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 25465.63, 20200417.0, 'NAA8', 1930791286.0, 1, '2020-04-29', 'early' ); /* INSERT QUERY NO: 9952 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200772670, 'ASSOCIAT associates', 2020.0, 1930641931.0, '2020-03-14', 20200312, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 4965.59, 20200314.0, 'NAU5', 1930641931.0, 1, '2020-03-28', 'early' ); /* INSERT QUERY NO: 9953 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR trust', 2020.0, 1930827135.0, '2020-04-25', 20200425, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 30999.54, 20200425.0, 'NAH4', 1930827135.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9954 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707822, 'PUBLI foundation', 2020.0, 1930842671.0, '2020-04-29', 20200430, 20200429, '2020-05-14', 'USD', 'RV', 1.0, 95063.77, 20200429.0, 'NAA8', 1930842671.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9955 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200785971, 'SYSCO in', 2020.0, 1930693245.0, '2020-03-24', 20200324, 20200324, '2020-04-08', 'USD', 'RV', 1.0, 34825.43, 20200324.0, 'NAA8', 1930693245.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9956 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200418007, 'AM ', 2020.0, 1930847007.0, '2020-05-07', 20200502, 20200507, '2020-07-11', 'USD', 'RV', 1.0, 2016.0, 20200507.0, 'NAGD', 1930847007.0, 1, '2020-07-07', 'early' ); /* INSERT QUERY NO: 9957 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200752302, 'KROGER foundation', 2020.0, 1930604542.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 17256.95, 20200306.0, 'NAA8', 1930604542.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9958 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200714710, 'SYSCO us', 2020.0, 1930576725.0, '2020-02-27', 20200227, 20200227, '2020-03-18', 'USD', 'RV', 1.0, 40522.15, 20200227.0, 'NAD1', 1930576725.0, 1, '2020-03-14', 'early' ); /* INSERT QUERY NO: 9959 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE us', 2020.0, 1930664707.0, '2020-03-18', 20200317, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 49031.7, 20200318.0, 'NAA8', 1930664707.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9960 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corp', 2020.0, 1930622640.0, '2020-03-08', 20200308, 20200308, '2020-03-23', 'USD', 'RV', 1.0, 68286.9, 20200308.0, 'NAH4', 1930622640.0, 1, '2020-03-20', 'early' ); /* INSERT QUERY NO: 9961 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930821846.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 1475.84, 20200425.0, 'NAH4', 1930821846.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9962 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200705742, 'DOT foundation', 2020.0, 1930643500.0, '2020-03-12', 20200312, 20200312, '2020-04-13', 'USD', 'RV', 1.0, 25448.32, 20200312.0, 'NA32', 1930643500.0, 1, '2020-04-06', 'early' ); /* INSERT QUERY NO: 9963 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200707741, 'SMART & systems', 2020.0, 1930686009.0, '2020-03-22', 20200322, 20200322, '2020-05-26', 'USD', 'RV', 1.0, 54986.28, 20200322.0, 'NAGD', 1930686009.0, 1, '2020-05-20', 'early' ); /* INSERT QUERY NO: 9964 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930838181.0, '2020-04-30', 20200429, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 4644.2, 20200430.0, 'NAA8', 1930838181.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 9965 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR co', 2020.0, 1930797739.0, '2020-04-17', 20200417, 20200417, '2020-05-02', 'USD', 'RV', 1.0, 8632.43, 20200417.0, 'NAH4', 1930797739.0, 1, '2020-05-01', 'early' ); /* INSERT QUERY NO: 9966 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S llc', 2020.0, 1930724623.0, '2020-03-31', 20200331, 20200331, '2020-04-15', 'USD', 'RV', 1.0, 369.01, 20200331.0, 'NAA8', 1930724623.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9967 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0100015557, 'BI corp', 2020.0, 1930844011.0, '2020-04-30', 20200430, 20200430, '2020-05-15', 'USD', 'RV', 1.0, 46657.4, 20200430.0, 'NAA8', 1930844011.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9968 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200782001, 'GORDO systems', 2020.0, 1930675534.0, '2020-03-25', 20200320, 20200325, '2020-04-14', 'USD', 'RV', 1.0, 13999.75, 20200325.0, 'NAD1', 1930675534.0, 1, '2020-04-11', 'early' ); /* INSERT QUERY NO: 9969 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200315290, 'KWI systems', 2020.0, 1930584384.0, '2020-02-29', 20200229, 20200229, '2020-03-15', 'USD', 'RV', 1.0, 67181.59, 20200229.0, 'NAA8', 1930584384.0, 1, '2020-03-08', 'early' ); /* INSERT QUERY NO: 9970 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH foundation', 2020.0, 1930832149.0, '2020-04-27', 20200428, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 27339.99, 20200427.0, 'NAC6', 1930832149.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9971 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930845081.0, '2020-05-01', 20200501, 20200501, '2020-05-16', 'USD', 'RV', 1.0, 12017.94, 20200501.0, 'NAH4', 1930845081.0, 1, '2020-05-15', 'early' ); /* INSERT QUERY NO: 9972 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH trust', 2020.0, 1930780899.0, '2020-04-14', 20200413, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 59392.71, 20200414.0, 'NAC6', 1930780899.0, 1, '2020-04-25', 'early' ); /* INSERT QUERY NO: 9973 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR systems', 2020.0, 1930683799.0, '2020-03-22', 20200321, 20200322, '2020-04-06', 'USD', 'RV', 1.0, 10101.4, 20200322.0, 'NAH4', 1930683799.0, 1, '2020-04-03', 'early' ); /* INSERT QUERY NO: 9974 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200739006, 'AL llc', 2020.0, 1930783327.0, '2020-04-14', 20200414, 20200414, '2020-04-29', 'USD', 'RV', 1.0, 72268.17, 20200414.0, 'NAA8', 1930783327.0, 1, '2020-04-23', 'early' ); /* INSERT QUERY NO: 9975 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930829665.0, '2020-04-27', 20200427, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 35971.57, 20200427.0, 'NAH4', 1930829665.0, 1, '2020-05-10', 'early' ); /* INSERT QUERY NO: 9976 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200779906, 'BOZZU systems', 2020.0, 1930645599.0, '2020-03-13', 20200312, 20200313, '2020-03-28', 'USD', 'RV', 1.0, 68140.21, 20200313.0, 'NAA8', 1930645599.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 9977 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200803720, 'DEC foundation', 2020.0, 1930772454.0, '2020-04-10', 20200410, 20200410, '2020-04-11', 'USD', 'RV', 1.0, 19314.58, 20200401.0, 'NAM2', 1930772454.0, 1, '2020-04-09', 'early' ); /* INSERT QUERY NO: 9978 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200900909, 'SYSCO ', 2020.0, 1930576501.0, '2020-02-27', 20200226, 20200227, '2020-03-13', 'USD', 'RV', 1.0, 41462.64, 20200227.0, 'NAA8', 1930576501.0, 1, '2020-03-09', 'early' ); /* INSERT QUERY NO: 9979 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200744019, 'TARG us', 2020.0, 1930861878.0, '2020-05-07', 20200506, 20200507, '2020-05-22', 'USD', 'RV', 1.0, 3392.46, 20200507.0, 'NAA8', 1930861878.0, 1, '2020-05-19', 'early' ); /* INSERT QUERY NO: 9980 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200915438, 'GROC in', 2020.0, 1930635796.0, '2020-03-16', 20200311, 20200316, '2020-03-31', 'USD', 'RV', 1.0, 49305.0, 20200316.0, 'NAA8', 1930635796.0, 1, '2020-03-27', 'early' ); /* INSERT QUERY NO: 9981 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200727278, 'BLOU corp', 2020.0, 1930661430.0, '2020-03-20', 20200317, 20200320, '2020-04-04', 'USD', 'RV', 1.0, 72878.4, 20200320.0, 'NAA8', 1930661430.0, 1, '2020-03-29', 'early' ); /* INSERT QUERY NO: 9982 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200780383, 'MEIJ foundation', 2020.0, 1930862208.0, '2020-05-06', 20200506, 20200506, '2020-05-21', 'USD', 'RV', 1.0, 68819.29, 20200506.0, 'NAA8', 1930862208.0, 1, '2020-05-17', 'early' ); /* INSERT QUERY NO: 9983 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA llc', 2020.0, 1930724542.0, '2020-04-01', 20200331, 20200401, '2020-04-16', 'USD', 'RV', 1.0, 38506.32, 20200401.0, 'NAH4', 1930724542.0, 1, '2020-04-15', 'early' ); /* INSERT QUERY NO: 9984 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200759878, 'SA foundation', 2020.0, 1930740880.0, '2020-04-04', 20200403, 20200404, '2020-04-19', 'USD', 'RV', 1.0, 34649.91, 20200404.0, 'NAH4', 1930740880.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9985 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR llc', 2020.0, 1930814200.0, '2020-04-23', 20200422, 20200423, '2020-05-08', 'USD', 'RV', 1.0, 14568.22, 20200423.0, 'NAH4', 1930814200.0, 1, '2020-05-06', 'early' ); /* INSERT QUERY NO: 9986 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200744019, 'TARG ', 2020.0, 1930823424.0, '2020-04-25', 20200424, 20200425, '2020-05-10', 'USD', 'RV', 1.0, 4040.05, 20200425.0, 'NAA8', 1930823424.0, 1, '2020-05-05', 'early' ); /* INSERT QUERY NO: 9987 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR us', 2020.0, 1930654650.0, '2020-03-18', 20200316, 20200318, '2020-04-02', 'USD', 'RV', 1.0, 37688.5, 20200318.0, 'NAH4', 1930654650.0, 1, '2020-03-31', 'early' ); /* INSERT QUERY NO: 9988 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200743996, 'STATER ', 2020.0, 1930610800.0, '2020-03-06', 20200305, 20200306, '2020-03-21', 'USD', 'RV', 1.0, 117876.55, 20200306.0, 'NAA8', 1930610800.0, 1, '2020-03-16', 'early' ); /* INSERT QUERY NO: 9989 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 200769623, 'WAL-MAR systems', 2020.0, 1930891806.0, '2020-05-12', 20200511, 20200512, '2020-05-27', 'USD', 'RV', 1.0, 56291.15, 20200512.0, 'NAH4', 1930891806.0, 1, '2020-05-28', '0-15 days' ); /* INSERT QUERY NO: 9990 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140105686, 'SYSC foundation', 2020.0, 2960621508.0, '2020-03-16', 20200316, 20200316, '2020-03-27', 'CAD', 'RV', 1.0, 355.5, 20200317.0, 'CA10', 2960621508.0, 1, '2020-04-01', '0-15 days' ); /* INSERT QUERY NO: 9991 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200704858, 'WAKE associates', 2020.0, 1930729681.0, '2020-04-02', 20200401, 20200402, '2020-04-17', 'USD', 'RV', 1.0, 11734.35, 20200402.0, 'NAA8', 1930729681.0, 1, '2020-04-12', 'early' ); /* INSERT QUERY NO: 9992 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S in', 2020.0, 1930604962.0, '2020-03-05', 20200305, 20200305, '2020-03-20', 'USD', 'RV', 1.0, 92.54, 20200305.0, 'NAA8', 1930604962.0, 1, '2020-03-15', 'early' ); /* INSERT QUERY NO: 9993 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200712105, 'WALG corporation', 2020.0, 1930758957.0, '2020-04-08', 20200407, 20200408, '2020-04-23', 'USD', 'RV', 1.0, 57899.22, 20200408.0, 'NAA8', 1930758957.0, 1, '2020-04-17', 'early' ); /* INSERT QUERY NO: 9994 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200726979, 'BJ\'S associates', 2020.0, 1930648413.0, '2020-03-14', 20200313, 20200314, '2020-03-29', 'USD', 'RV', 1.0, 82.82, 20200314.0, 'NAA8', 1930648413.0, 1, '2020-03-23', 'early' ); /* INSERT QUERY NO: 9995 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'CA02', 0140104423, 'METRO corporation', 2020.0, 2960628087.0, '2020-04-14', 20200414, 20200414, '2020-04-26', 'CAD', 'RV', 1.0, 238689.95, 20200416.0, 'CA10', 2960628087.0, 1, '2020-04-30', '0-15 days' ); /* INSERT QUERY NO: 9996 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200762301, 'C&S WH ', 2020.0, 1930826238.0, '2020-04-27', 20200425, 20200427, '2020-05-12', 'USD', 'RV', 1.0, 72748.85, 20200427.0, 'NAC6', 1930826238.0, 1, '2020-05-08', 'early' ); /* INSERT QUERY NO: 9997 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR in', 2020.0, 1930664201.0, '2020-03-17', 20200317, 20200317, '2020-04-01', 'USD', 'RV', 1.0, 32693.62, 20200317.0, 'NAH4', 1930664201.0, 1, '2020-03-30', 'early' ); /* INSERT QUERY NO: 9998 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200580232, 'INTERR associates', 2020.0, 1930617604.0, '2020-03-08', 20200306, 20200308, '2020-03-18', 'USD', 'RV', 1.0, 25961.25, 20200308.0, 'NA10', 1930617604.0, 1, '2020-03-11', 'early' ); /* INSERT QUERY NO: 9999 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR associates', 2020.0, 1930732073.0, '2020-04-03', 20200402, 20200403, '2020-04-18', 'USD', 'RV', 1.0, 45027.47, 20200403.0, 'NAH4', 1930732073.0, 1, '2020-04-16', 'early' ); /* INSERT QUERY NO: 10000 */ INSERT INTO invoices(business_code, cust_number, name_customer, buisness_year, doc_id, posting_date, document_create_date, document_create_date1, due_in_date, invoice_currency, document_type, posting_id, total_open_amount, baseline_create_date, cust_payment_terms, invoice_id, isOpen, predicted_payment_date, predicted_aging_bucket) VALUES ( 'U001', 0200769623, 'WAL-MAR corporation', 2020.0, 1930795639.0, '2020-04-18', 20200416, 20200418, '2020-05-03', 'USD', 'RV', 1.0, 11302.67, 20200418.0, 'NAH4', 1930795639.0, 1, '2020-05-02', 'early' );
let kit = { lang : 'sql', conversion : [ { class : 'string.chroma-bravo', pattern : /((?<![\\])['"])((?:.(?!(?<![\\])\1))*.?)\1/g }, { class: 'comment.chroma-charlie', pattern: /--.*$|\/\*[\s\S]*?\*\/|(\/\/)[\s\S]*?$/gm }, { class: 'constant.numeric.chroma-echo', pattern: /\b(\d+(\.\d+)?(e(\+|\-)?\d+)?(f|d)?|0x[\da-f]+)\b/gi }, { class: 'function.call.chroma-tango', pattern: /(\w+?)(?=\()/g }, { "class": 'keyword.operator.chroma-romeo', pattern: /\+|\!|\-|&(gt|lt|amp);|\||\*|=/g } ] } H2HBABBA3260_ISHWAR_BAISLA_URSULA module.exports = kit